.schedule-content {
    /* background-color: #f9f9f9;  */
    /* Light background color for contrast */
    padding: 20px;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    max-width: 600px; /* Limit the width for better readability */
    margin: 20px auto; /* Center the form */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Consistent font */
}

.schedule-content h3 {
    margin-bottom: 20px; /* Space below heading */
}

.schedule-content label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.schedule-content input, .schedule-content textarea {
    width: 100%; /* Full width */
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc; /* Light border */
    border-radius: 5px; /* Rounded corners */
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px; 
    /* Larger font size */
}

.schedule-content input:focus, .schedule-content textarea:focus {
    border-color: #00563B; /* Highlight border on focus */
    outline: none; /* Remove default outline */
}

.schedule-content button {
    background-color: #00563B; /* Green background */
    color: white; /* White text */
    padding: 15px 20px;
    border: none;
    border-radius: 5px; /* Rounded corners */
    cursor: pointer;
    font-size: 15px; /* Larger font size */
    transition: background-color 0.3s; /* Smooth transition */
}

.schedule-content button:hover {
    background-color: #8FBC8B; /* Darker green on hover */
}

.schedule-content button:active {
    background-color: #00563B; /* Even darker green on active */
}

.schedule-content label span {
    font-weight: normal;
    font-size: smaller;
    color: grey;
}

@media (max-width: 600px) {
    .schedule-content {
        padding: 15px;
    }

    .schedule-content input, .schedule-content textarea, .schedule-content button {
        font-size: 14px; /* Adjust font size for smaller screens */
    }
}

input[type="text"], input[type="tel"], input[type="datetime-local"], select, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fff;

}

select {
    height: 42px; /* Adjust the height to match the input fields */
    background-color: #fff;

}

select:focus, input:focus, textarea:focus {
    border-color: #00563B; /* Optional: Add a focus color to the border */
    outline: none;
}