/* حاوية المواعيد */
.time-section-wrapper {
    display: none;
    /* مخفي افتراضياً */
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    background: #fff;
    padding: 20px;
    margin-top: 20px;
}

.time-section-wrapper.show {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

/* تقسيم الأعمدة */
.time-slots-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    direction: rtl;
    /* لترتيب الوقت بشكل صحيح */
}

.time-slot {
    border: 1px solid #d1dcf5;
    background-color: #f0f4ff;
    color: #3867d6;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s;
    margin-bottom: 10px;
}

.time-slot:hover {
    background-color: #e2e9ff;
}

.time-slot.selected {
    background-color: #3867d6 !important;
    color: white !important;
}