/* General form styling */
#booking-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-family: inherit;
}

#booking-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

#booking-form input[type="text"],
#booking-form input[type="email"],
#booking-form input[type="datetime-local"],
#booking-form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
    color: #555;
    background-color: #fff;
    font-family: inherit;
}

#booking-form input[type="text"]:focus,
#booking-form input[type="email"]:focus,
#booking-form input[type="datetime-local"]:focus,
#booking-form select:focus {
    border-color: #66afe9;
    outline: none;
    box-shadow: 0 0 8px rgba(102, 175, 233, 0.6);
}

#booking-form input[type="submit"] {
    width: 100%;
    padding: 12px;
    background-color: #28a745;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
}

#booking-form input[type="submit"]:hover {
    background-color: #218838;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    #booking-form {
        padding: 15px;
    }

    #booking-form label {
        margin-bottom: 6px;
        font-size: 14px;
    }

    #booking-form input[type="text"],
    #booking-form input[type="email"],
    #booking-form input[type="datetime-local"],
    #booking-form select {
        font-size: 14px;
        padding: 8px;
    }

    #booking-form input[type="submit"] {
        font-size: 16px;
        padding: 10px;
    }
}

.time_row {
    background-color: #a6a5a5;
    padding: 5px;
    border-color: #2e2e2e;
    border-radius: 5px;
    display: inline-flex;
    margin-left: 8px;
}

.text-center {
    text-align: center;
}

.appointments-dashboard-widgets {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.appointments-widget {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: calc(33.33% - 20px);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.appointments-widget:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.appointments-widget h2 {
    margin: 0 0 10px;
    font-size: 20px;
    color: #333;
}

.appointments-widget p {
    font-size: 28px;
    font-weight: bold;
    color: #0073aa;
    margin: 0;
}

.appointments-calendar {
    margin-top: 40px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


.appointments-calendar h2 {
    font-size: 22px;
    color: #333;
    margin-bottom: 20px;
}

#booking-date-picker {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
}

#appointments-list {
    margin-top: 20px;
    font-size: 16px;
    color: #555;
}

#appointments-list ul {
    list-style-type: none;
    padding: 0;
}

#appointments-list ul li {
    background: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#appointments-list ul li:hover {
    background: #f1f1f1;
}

#appointments-list p {
    color: #e74c3c;
    font-weight: bold;
}

.no_link {
    text-decoration: none !important;
}

.m-auto {
    margin: auto;
}

.small_btn {
    padding: 5px !important;
    font-size: 12px;
}

.page_offset {
    margin-top: 120px;
    text-align: center;
}

.timeselected {
    background-color: #1cf31c !important;
}

.card {
    margin-top: 40px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.w-100 {
    width: 100%;
}

.d-block {
    display: block;
}
.d-none{
    display: none;
}

.button-blue {
    background-color: #a1e7ff;
    color: #222;
    border: none;
    border-radius: 6px;
    padding: 10px 24px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s, box-shadow 0.2s, color 0.2s;
    font-family: inherit;
}

.button-blue:hover,
.button-blue:focus {
    background-color: #7fd6f7;
    color: #0a3a4a;
    box-shadow: 0 4px 16px rgba(0,0,0,0.13);
    outline: none;
}


#otp-login-form input[type="number"]{
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
    color: #555;
    background-color: #fff;
    font-family: inherit;
}

#otp-login-form input[type="number"]:focus{
    border-color: #66afe9;
    outline: none;
    box-shadow: 0 0 8px rgba(102, 175, 233, 0.6);
}