/* Mini Alerte Expert sous la carte */
.expert-mini-alert {
    background-color: #fffbeb;
    /* Amber 50 */
    border: 1px solid #fcd34d;
    /* Amber 300 */
    color: #92400e;
    /* Amber 800 */
    padding: 0.75rem 1rem;
    border-radius: 50px;
    /* Pill shape */
    margin: 1rem auto 0 auto;
    max-width: 90%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    line-height: 1.3;
    animation: fadeIn 0.4s ease-out;
    box-shadow: 0 2px 4px rgba(245, 158, 11, 0.05);
}

.expert-mini-alert .icon {
    font-size: 1.2rem;
}

/* Ensure controls have space */
.controls {
    margin-top: 1.5rem;
}