﻿.topbar-emotion {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent !important;
    z-index: 900;
}
.topbar-inner {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 12px;
}

.topbar-button {
    border: 2px solid #8b4513;
    border-radius: 30px;
    padding: 8px 12px;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    white-space: nowrap;
}
    .topbar-button.back-btn {
        color: white;
        background-color: #1BC259;
    }

    .topbar-button.help-btn {
        color: white;
        background-color: #2e7d32; /* vert doux */
    }

    .topbar-button:hover {
        background-color: #27F573;
    }


.topbar-emotion-nom {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /*text-align: center;*/
    margin: 0 8px;
    line-height: 1.1;

}
.topbar-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.8);
}

.topbar-value {
    font-family: var(--font-serif);
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 600;
    color: var(--primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

