/* Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif; /* Changed to a more standard font */
}

body {
    background: #f0f0f0; /* Light grey background for a cleaner look */
    color: #333; /* Dark grey text for better readability */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.container {
    background: #ffffff; /* White background for the container */
    padding: 2rem;
    border-radius: 20px; /* Reduced border radius for a subtle effect */
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    width: 90%;
    max-width: 600px;
}

h2 {
    font-size: 2.5rem; /* Reduced font size */
    color: #007BFF; /* A calming blue */
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 25px;
}

label {
    display: block;
    font-size: 1.1rem;
    color: #555; /* Darker shade for labels */
    text-transform: uppercase;
    margin-bottom: 5px; /* Added space below the label */
}

input[type="text"],
input[type="date"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 2px solid #007BFF; /* Border color matches theme */
    border-radius: 5px; /* Smaller border radius */
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle inner shadow */
}

input[type="text"]:focus,
input[type="date"]:focus,
input[type="email"]:focus,
textarea:focus {
    border-color: #0056b3; /* Darker blue on focus */
    outline: none;
}

textarea {
    resize: none;
    height: 100px;
}

button {
    padding: 10px 20px; /* Reduced padding for buttons */
    font-size: 1rem;
    color: #fff;
    background-color: #007BFF; /* Blue background */
    border: none; /* Removed border */
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s; /* Smooth background transition */
}

button:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

.success {
    color: #28a745; /* Green for success messages */
    font-weight: bold;
    margin-top: 20px;
}

.error {
    color: #dc3545; /* Red for error messages */
    font-weight: bold;
    margin-top: 20px;
}

@media (max-width: 768px) {
    h2 {
        font-size: 2rem; /* Reduced heading size for smaller screens */
    }

    .container {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 1.5rem; /* Further reduced for very small screens */
    }
    
    button {
        width: 100%; /* Full width buttons on small screens */
    }
}

.form-group select {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 20px; /* Maintain spacing consistency */
}

    .doctor-thumbnail {
        width: 50px; /* Set width for thumbnail */
        height: 50px; /* Set height for thumbnail */
        border-radius: 50%; /* Make it circular */
        object-fit: cover; /* Cover the area neatly */
    }

    .doctor {
        margin-bottom: 20px; /* Space between each doctor entry */
        display: flex; /* Flex container for alignment */
        align-items: center; /* Center items vertically */
    }

    .doctor img {
        margin-right: 15px; /* Space between image and text */
    }

