/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
    color: #333;
}

a {
    color: #4CAF50;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header Styles */
.main-header {
    background-color: #333;
    padding: 15px 20px;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-header .logo a {
    font-size: 1.8em;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.main-header .logo i {
    margin-right: 8px;
}

.navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.navbar ul li {
    margin-left: 20px;
}

.navbar ul li a {
    color: white;
    font-size: 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.navbar ul li a i {
    margin-right: 8px;
}

/* Mobile Menu */
.hamburger {
    display: none;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

.navbar ul.active {
    display: block;
}


/* Responsive Design */
@media (max-width: 768px) {
    .navbar ul {
        flex-direction: column;
        align-items: center;
        display: none;
    }

    .navbar ul li {
        margin-left: 0;
        margin-top: 10px;
    }

    .hamburger {
        display: block;
    }
}

/* Additional Styles */
.cta-btn {
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    font-size: 18px;
    border: none;
    cursor: pointer;
    margin: 10px;
    text-decoration: none;
    border-radius: 5px;
}

.cta-btn:hover {
    background-color: #45a049;
}


/* Dashboard Styles */
.dashboard-container {
    width: 100%;
    max-width: 800px;
    margin: 50px auto;
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.dashboard-container h1 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
}

.user-actions {
    margin-top: 30px;
}

.user-actions p {
    font-size: 1.2em;
    color: #555;
}

.user-actions a {
    display: inline-block;
    margin-top: 20px;
    font-size: 16px;
    padding: 12px 20px;
    background-color: #4CAF50;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.user-actions a:hover {
    background-color: #45a049;
}

.user-actions a:active {
    background-color: #388e3c;
}


/* Services Page Styles */
.services-container {
    width: 100%;
    max-width: 1000px;
    margin: 50px auto;
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.services-container h1 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.service-item {
    width: 230px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.service-item i {
    font-size: 3em;
    color: #4CAF50;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-item:hover i {
    color: #45a049;
}

.service-item h3 {
    font-size: 1.8em;
    margin: 15px 0;
    color: #333;
}

.service-item p {
    font-size: 1em;
    color: #666;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-list {
        flex-direction: column;
        align-items: center;
    }
    .service-item {
        width: 80%;
        margin-bottom: 20px;
    }
}


/* About Page Styles */
.about-container {
    width: 100%;
    max-width: 1000px;
    margin: 50px auto;
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.about-container h1 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.about-content {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.about-text {
    width: 45%;
    text-align: left;
    margin-bottom: 30px;
}

.about-text h2 {
    font-size: 2em;
    color: #4CAF50;
    margin-bottom: 15px;
}

.about-text p {
    font-size: 1.1em;
    color: #666;
    line-height: 1.6;
}

.about-team {
    margin-top: 40px;
}

.about-team h2 {
    font-size: 2em;
    color: #333;
    margin-bottom: 20px;
}

.team-members {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.team-member {
    width: 200px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.team-member i {
    font-size: 3em;
    color: #4CAF50;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.team-member:hover i {
    color: #45a049;
}

.team-member h3 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 5px;
}

.team-member p {
    font-size: 1em;
    color: #777;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        align-items: center;
    }

    .about-text {
        width: 80%;
    }

    .team-members {
        flex-direction: column;
        align-items: center;
    }

    .team-member {
        width: 80%;
        margin-bottom: 20px;
    }
}


/* Contact Page Styles */
.contact-container {
    width: 100%;
    max-width: 1000px;
    margin: 50px auto;
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-container h1 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.contact-info {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.contact-item {
    width: 30%;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.contact-item i {
    font-size: 3em;
    color: #4CAF50;
    margin-bottom: 15px;
}

.contact-item h3 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 1em;
    color: #666;
}

.contact-form {
    margin-top: 40px;
}

.contact-form h2 {
    font-size: 2em;
    color: #333;
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 20px;
}

input, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    color: #333;
}

textarea {
    resize: vertical;
}

button.submit-btn {
    width: 100%;
    padding: 12px;
    background-color: #4CAF50;
    color: white;
    border: none;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

button.submit-btn:hover {
    background-color: #45a049;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
        align-items: center;
    }

    .contact-item {
        width: 80%;
        margin-bottom: 20px;
    }
}



/* Hero Section */
.hero-container {
    background-color: #212122;
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.hero-content h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.2em;
    margin: 10px 0;
}

.cta-btn {
    background-color: #fff;
    color: #4CAF50;
    padding: 12px 20px;
    font-size: 18px;
    border: none;
    cursor: pointer;
    margin: 10px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-btn:hover {
    background-color: #45a049;
    color: white;
}

/* About Section */
.about {
    text-align: center;
    padding: 50px 20px;
    background-color: #f9f9f9;
}

.about h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.about p {
    font-size: 1.2em;
    margin-bottom: 40px;
}

.about-features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.feature {
    width: 30%;
    padding: 20px;
    background-color: #fff;
    margin: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.feature i {
    font-size: 3em;
    color: #4CAF50;
}

.feature h3 {
    font-size: 1.5em;
    margin: 10px 0;
}

.feature p {
    font-size: 1em;
}



/* Appointment Form Container */
.appointment-form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 60px;
}

.appointment-form-container h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
}

.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 1.1em;
    margin-bottom: 8px;
    color: #333;
}

.form-group select,
.form-group input {
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
    transition: border 0.3s;
}

.form-group select:focus,
.form-group input:focus {
    border-color: #4CAF50;
}

.cta-btn {
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    font-size: 1.2em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.cta-btn:hover {
    background-color: #45a049;
}

.success-message {
    color: #28a745;
    font-size: 1.2em;
    text-align: center;
}

.error-message {
    color: #dc3545;
    font-size: 1.2em;
    text-align: center;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .appointment-form-container {
        padding: 20px;
    }

    .appointment-form {
        gap: 15px;
    }

    .cta-btn {
        font-size: 1em;
    }
}


/* Profile Container */
.profile-container {
    width: 50%;
    margin: 0 auto;
    padding: 30px;
    background-color: #f4f4f4;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

.profile-container h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

/* Form Fields */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: #007bff;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.submit-btn:hover {
    background-color: #0056b3;
}

/* Error/Success Messages */
p {
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    margin-top: 20px;
}




/* General container styling */
.appointments-container {
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    text-align: center;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.appointments-container h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

/* Styling for 'No appointments' message */
.no-appointments {
    font-size: 16px;
    color: #777;
}

.no-appointments a {
    color: #007BFF;
    text-decoration: none;
}

.no-appointments a:hover {
    text-decoration: underline;
}

/* Table styling */
.appointments-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.appointments-table th, .appointments-table td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid #ddd;
}

.appointments-table th {
    background-color: #f4f4f4;
    color: #333;
}

.appointments-table td {
    background-color: #fff;
}

/* Status color styling */
.status-pending {
    color: #FF7F00;
    font-weight: bold;
}

.status-confirmed {
    color: #28A745;
    font-weight: bold;
}

.status-cancelled {
    color: #DC3545;
    font-weight: bold;
}

/* Hover effect on rows */
.appointments-table tr:hover {
    background-color: #f1f1f1;
    cursor: pointer;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .appointments-table th, .appointments-table td {
        font-size: 14px;
        padding: 10px;
    }
}



/* Appointments Container */
.appointments-container {
    width: 80%;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.appointments-container h2 {
    text-align: center;
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

/* Table Styling */
.appointments-table {
    width: 100%;
    border-collapse: collapse;
}

.appointments-table th,
.appointments-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
}

.appointments-table th {
    background-color: #f4f4f4;
    font-weight: bold;
}

.appointments-table td {
    background-color: #fafafa;
}

.appointments-table tr:hover {
    background-color: #f1f1f1;
}

/* Status Styling */
.status-pending {
    color: orange;
    font-weight: bold;
}

.status-confirmed {
    color: green;
    font-weight: bold;
}

.status-cancelled {
    color: red;
    font-weight: bold;
}

/* Form Styling */
form {
    display: flex;
    align-items: center;
}

select {
    padding: 8px;
    margin-right: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

button.update-btn {
    padding: 8px 16px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button.update-btn:hover {
    background-color: #45a049;
}

/* Success/Error Messages */
.success-message {
    color: green;
    text-align: center;
}

.error-message {
    color: red;
    text-align: center;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-family: Arial, sans-serif;
    position: relative;
}

.footer-content p {
    margin: 10px 0;
}

.footer-content a {
    color: #4CAF50;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.footer-content a:hover {
    color: #81C784;
}

footer .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
}

footer p {
    font-size: 14px;
}

/* Login Container */
.login-container {
    background-color: #fff;
    padding: 2rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    width: 100%;
    max-width: 400px;
    margin: 2rem auto;
}

/* Header Title */
h2 {
    text-align: center;
    color: #333;
    margin-bottom: 1rem;
}

/* Input Group */
.input-group {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 0.5rem;
}

.input-group i {
    color: #888;
    margin-right: 0.5rem;
}

.input-group input {
    width: 100%;
    padding: 0.5rem;
    border: none;
    outline: none;
    font-size: 1rem;
}

.input-group input::placeholder {
    color: #bbb;
}

/* Login Button */
.login-btn {
    width: 100%;
    padding: 0.75rem;
    background-color: #4CAF50;
    color: white;
    font-size: 1.1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 1rem;
}

.login-btn:hover {
    background-color: #45a049;
}

/* Error Messages */
.error-msg {
    text-align: center;
    margin: 1rem 0;
    font-size: 1rem;
    color: red;
}

/* Links */
a {
    color: #4CAF50;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}


/* Mobile Responsiveness */
@media (max-width: 600px) {
    .login-container {
        width: 90%;
        padding: 1.5rem;
    }

    h2 {
        font-size: 1.5rem;
    }
}



/* Register Container */
.register-container {
    background-color: #fff;
    padding: 2rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    width: 100%;
    max-width: 400px;
    margin: 2rem auto;
}

/* Header Title */
h2 {
    text-align: center;
    color: #333;
    margin-bottom: 1rem;
}

/* Input Group */
.input-group {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 0.5rem;
}

.input-group i {
    color: #888;
    margin-right: 0.5rem;
}

.input-group input {
    width: 100%;
    padding: 0.5rem;
    border: none;
    outline: none;
    font-size: 1rem;
}

.input-group input::placeholder {
    color: #bbb;
}

/* Register Button */
.register-btn {
    width: 100%;
    padding: 0.75rem;
    background-color: #4CAF50;
    color: white;
    font-size: 1.1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 1rem;
}

.register-btn:hover {
    background-color: #45a049;
}

/* Error and Success Messages */
.success-msg, .error-msg {
    text-align: center;
    margin: 1rem 0;
    font-size: 1rem;
}

.success-msg {
    color: green;
}

.error-msg {
    color: red;
}

/* Links */
a {
    color: #4CAF50;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}


/* Mobile Responsiveness */
@media (max-width: 600px) {
    .register-container {
        width: 90%;
        padding: 1.5rem;
    }

    h2 {
        font-size: 1.5rem;
    }
}