/* Conteneur et cartes */
.custom-session-container {
    direction: rtl; /* Force l'alignement pour l'arabe */
}

.session-card {
    border: 1px solid #eaeaea !important;
    transition: all 0.25s ease-in-out;
}

.session-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(107, 33, 168, 0.08) !important;
    border-color: #d8b4fe !important;
}

/* Badges de date */
.date-badge {
    width: 75px;
    height: 95px;
    min-width: 75px;
    line-height: 1.1;
}

/* Couleurs dynamiques */
.bg-free {
    background-color: #10b981 !important; /* Vert iCagenda */
}
.bg-premium {
    background-color: #a855f7 !important; /* Violet abonnés */
}

/* Textes et badges internes */
.badge-free {
    background-color: #e6f4ea;
    color: #137333;
}
.badge-premium {
    background-color: #f3e8ff;
    color: #6b21a8;
}

.text-dark-purple {
    color: #3b0764;
    transition: color 0.2s;
}
.text-dark-purple:hover {
    color: #a855f7;
}

/* Bouton d'action */
.btn-action {
    background-color: #ffffff;
    color: #6b21a8;
    border: 1px solid #6b21a8;
    transition: all 0.2s;
}
.btn-action:hover {
    background-color: #6b21a8;
    color: #ffffff;
}

/* Corrections d'alignement pour le mode RTL (Arabe) */
[dir="rtl"] .session-card .ms-3 {
    margin-right: 1rem !important;
    margin-left: 0 !important;
}
[dir="rtl"] .session-card .text-start {
    text-align: right !important;
}