body {
    background: linear-gradient(135deg, #ff99cc, #ff66b3);
    font-family: 'Comic Sans MS', cursive;
    text-align: center;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

#proposalSection {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

#proposalText {
    font-size: 3rem;
    color: white;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
    animation: textPop 1s ease-in-out;
}

/* General Container */
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin: 0 auto;
    max-width: 600px;
}

/* Title */
h1 {
    font-size: 2.5em;
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
}

/* Styling for Input Fields */
input[type="text"] {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 2px solid #ccc;
    border-radius: 8px; /* Slightly more rounded corners */
    font-size: 1em;
    background-color: #f4f4f4; /* Light background color */
    color: #333; /* Text color */
    transition: all 0.3s ease; /* Smooth transition for focus and hover */
}

/* On Focus */
input[type="text"]:focus {
    outline: none;
    border-color: #4CAF50; /* Green border on focus */
    box-shadow: 0 0 8px rgba(76, 175, 80, 0.4); /* Green glow effect */
    background-color: #eafaf1; /* Light greenish background on focus */
}

/* Adding Hover Effect */
input[type="text"]:hover {
    border-color: #8bc34a; /* Lighter green on hover */
    background-color: #d466ff; /* Subtle hover background */
}

/* Adding a Color Gradient Border */
input[type="text"] {
    background-image: linear-gradient(to right, #f3878d, #f547ad); /* Soft green gradient */
    border: 2px solid transparent;
    border-radius: 8px;
    background-clip: padding-box; /* Prevents border from overlapping the background */
}

/* Focused Gradient Border */
input[type="text"]:focus {
    background-color: #eafaf1; /* Focus background stays subtle green */
    border-color: #81c784; /* Lighter green for the border on focus */
    box-shadow: 0 0 8px rgba(81, 196, 132, 0.5); /* Subtle green glow effect */
}


button {
    padding: 12px 20px;
    font-size: 1.2em;
    background-color: #eb50eb;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #c517bc;
}

/* Container for Sharing Options */
#sharingContainer {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    background-color: #ff074554;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: none; /* Initially hidden */
}

/* Style the Proposal Link */
#proposalLink {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #333333;
}

/* Share Buttons Container */
#shareButtons {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Add some spacing between buttons */
}

/* Styling for Each Share Button */
.shareButton {
    padding: 12px 20px;
    font-size: 1.1em;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

#whatsappButton {
    background-color: #d325d3; /* WhatsApp Green */
    color: white;
}

#whatsappButton:hover {
    background-color: #65128c;
}

#shareOtherButton {
    background-color: #a74caf; /* Green */
    color: white;
}

#shareOtherButton:hover {
    background-color: #45a049;
}

/* Style for mobile responsiveness */
@media screen and (max-width: 600px) {
    #sharingContainer {
        padding: 15px;
    }

    .shareButton {
        font-size: 1em;
    }
}
