/* Contact Page Container */
.contact-container {
    width: 80%;
    margin: auto;
    padding: 20px;
    text-align: center;
    animation: fadeIn 1s ease-in;
}

/* Header Styling */
.contact-header {
    font-size: 2em;
    color: #ffffff;
    margin-bottom: 10px;
    animation: slideDown 1s ease-out;
}

.contact-subtext {
    font-size: 1em;
    color: #ffffff;
    margin-bottom: 30px;
}

/* Form Styling */
.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-form input,
.contact-form textarea {
    width: 80%;
    margin-bottom: 15px;
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #007BFF;
    transform: scale(1.05);
    outline: none;
}

.contact-form button {
    padding: 10px 20px;
    font-size: 1em;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-form button:hover {
    background-color: #0056b3;
    transform: scale(1.1);
}

/* Feedback Section */
.feedback-section {
    margin-top: 40px;
}

.feedback-section h2 {
    font-size: 1.5em;
    margin-bottom: 20px;
}

#feedbackList {
    text-align: left;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 5px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
/* Compose Mail Button Styling */
.compose-button-container {
    margin-top: 20px;
    text-align: center;
}

#composeMailButton {
    padding: 10px 20px;
    font-size: 1em;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

#composeMailButton:hover {
    background-color: #218838;
    transform: scale(1.1);
}
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Disable horizontal scrolling */
    font-family: Arial, sans-serif;
}