/* ============================================================
   public/css/astrologie.css
   Styles dédiés au widget et à la modale Astrologie.
   ============================================================ */

/* ===================== WIDGET ============================= */
.astro-widget { display: flex; flex-direction: column; gap: 10px; }

.astro-signe-row { display: flex; align-items: center; gap: 10px; }
.astro-emoji { font-size: 28px; flex-shrink: 0; }
.astro-signe-label { font-size: 15px; font-weight: 700; color: #1f2937; }
.astro-signe-dates { font-size: 11px; color: #9ca3af; margin-top: 2px; }

.astro-resume {
    font-size: 13px; color: #374151; line-height: 1.6;
    background: #f8fafc; border-radius: 10px;
    padding: 10px 14px; border-left: 3px solid #7c3aed;
}

.astro-no-signe {
    display: flex; flex-direction: column; align-items: center;
    text-align: center; padding: 8px 0;
}
.astro-btn-profil {
    padding: 8px 18px; background: #7c3aed; color: #fff;
    border: none; border-radius: 10px; font-size: 13px;
    font-weight: 600; cursor: pointer; transition: background .2s;
}
.astro-btn-profil:hover { background: #6d28d9; }

/* ===================== MODALE ============================ */
.astro-modal { display: flex; flex-direction: column; gap: 14px; }

.astro-selector {
    display: flex; flex-wrap: wrap; gap: 6px;
    margin-bottom: 4px;
}
.astro-selector-btn {
    padding: 5px 10px; border: 1.5px solid #e5e7eb;
    border-radius: 20px; background: #fff; font-size: 12px;
    font-weight: 600; color: #6b7280; cursor: pointer;
    transition: all .15s; white-space: nowrap;
}
.astro-selector-btn.active,
.astro-selector-btn:hover {
    background: #7c3aed; border-color: #7c3aed; color: #fff;
}

.astro-modal-header { display: flex; align-items: center; gap: 12px; }
.astro-modal-emoji  { font-size: 36px; flex-shrink: 0; }
.astro-modal-signe  { font-size: 18px; font-weight: 800; color: #1f2937; }
.astro-modal-dates  { font-size: 12px; color: #9ca3af; margin-top: 2px; }

.astro-sections { display: flex; flex-direction: column; gap: 12px; }
.astro-section  { background: #f8fafc; border-radius: 12px; padding: 12px 14px; border-left: 3px solid #7c3aed; }
.astro-section-titre { font-size: 12px; font-weight: 700; color: #7c3aed; text-transform: uppercase; letter-spacing: .4px; margin-bottom: 6px; }
.astro-section-texte { font-size: 13px; color: #374151; line-height: 1.6; }
