#fme-reschedule-modal {
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.fme-reschedule-content {
    background-color: #fefefe;
    padding: 20px;
    border: 1px solid #888;
    width: 400px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.fme-close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.fme-close-modal:hover,
.fme-close-modal:focus {
    color: #000;
    text-decoration: none;
}

.fme-reschedule-body h2 {
    margin-top: 0;
    border-bottom: 2px solid #007cba;
    padding-bottom: 10px;
    color: #23282d;
}

.fme-date-section {
    margin: 20px 0;
}

.fme-date-section label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.fme-datepicker {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#fme-slots-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.fme-slot-option {
    padding: 8px 12px;
    border: 1px solid #007cba;
    border-radius: 4px;
    cursor: pointer;
    background: #fff;
    color: #007cba;
    transition: all 0.2s;
    font-size: 13px;
}

.fme-slot-option:hover {
    background: #f0f0f0;
}

.fme-slot-option.selected {
    background: #007cba;
    color: #fff;
}

.fme-slot-option.booked {
    border-color: #ccc;
    color: #999;
    background: #f9f9f9;
    cursor: not-allowed;
    text-decoration: line-through;
}

.fme-actions {
    margin-top: 30px;
    text-align: right;
}

.fme-actions .button {
    height: 36px;
    padding: 0 20px;
}

/* Datepicker Styling in Admin */
.ui-datepicker {
    z-index: 10001 !important;
}