.wkwc-schedule-message {
    margin-top: 40px;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    white-space: nowrap;
}

.day-card {
    flex: 1 0 auto;
    width: 120px;
    height: 120px;
    border: 2px solid #ddd;
    border-radius: 8px;
    background: #fff;
    font-size: 13px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.day-card-inner strong {
    display: block;
    font-size: 15px;
    margin-bottom: 6px;
    color: #000;
}

.day-card-inner span {
    font-size: 13px;
    color: #000;
}

.day-card:hover {
    border-color: #0073aa;
    background: #f0f8ff;
}

.day-card.selected {
    background: #00942e !important;
    border-color: #00942e !important;
    color: #fff !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.day-card.selected strong,
.day-card.selected span {
    color: #fff !important;
}

.wkwc-time-slots {
    display: flex;
    gap: 10px;
}
.time-slot {
    flex: 1;
    text-align: center;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
    transition: 0.3s;
    color: #000;
}
.time-slot:hover {
    border-color: #0073aa;
    background: #f0f8ff;
}
.time-slot.selected {
    background: #00942e;
    color: #fff;
}
.time-slot.disabled {
    background: #eee;
    color: #aaa;
    cursor: not-allowed;
}
.wkwc-schedule-heading {
    text-align: center;
    /* margin-bottom: 5px; */
    margin-top: 30px;
    font-size: 22px;
    font-weight: 600;
    color: #000;
}
.wkwc-thankyou-delivery {
    border: 1px solid #ddd;
    padding: 15px;
    margin: 20px 0;
    background-color: #f9f9f9;
}
.wkwc-thankyou-delivery h3 {
    margin: 0 0 10px;
}
.slot-spinner {
    text-align: center;
    padding: 20px;
}
.slot-spinner .loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.day-card.disabled {
    pointer-events: none;
    opacity: 0.5;
    background: #f5f5f5;
    border: 1px solid #ddd;
    cursor: not-allowed;
}
