header.page-header{
    display: none;
}

/* ===== RESET & BASE STYLES ===== */
.zaya-satisfaction-form {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    background: #FFF;
}

.zaya-satisfaction-form h2 {
    text-align: center;
    color: var( --e-global-color-primary );
    margin-bottom: 15px;
}

.zaya-satisfaction-form p {
    text-align: center;
    color: var( --e-global-color-primary );
    margin-bottom: 20px;
}

/* ===== FORM GROUPS ===== */
.form-group {
    margin-bottom: 20px;
}

.form-group > label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var( --e-global-color-primary );
}

/* ===== INPUT FIELDS (AGE, TEXT AREA) ===== */
input[type="number"],
textarea {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
    margin-top: 5px;
}

textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

/* ===== RADIO BUTTONS (HIDDEN) ===== */
.rating-scale input[type="radio"],
.radio-group input[type="radio"] {
    position: absolute;
    visibility: hidden;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    opacity: 0;
    pointer-events: none;
}

/* ===== RADIO INDICATOR (ALWAYS VISIBLE) ===== */
.rating-scale .radio-indicator,
.radio-group .radio-indicator {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 1px solid #ccc; /* CERC GOL (GRI) CÂND NU E SELECTAT */
    border-radius: 50%;
    margin-right: 6px;
    position: relative;
    vertical-align: middle;
    transition: all 0.2s ease;
}

.rating-scale .radio-indicator{
    margin-right: 0;
}

/* ===== RADIO INDICATOR (SELECTED - BLUE CIRCLE) ===== */
.rating-scale input[type="radio"]:checked + .radio-indicator,
.radio-group input[type="radio"]:checked + .radio-indicator {
    background-color: var( --e-global-color-primary ); /* FUNDAL ALBASTRU */
    border: 2px solid white; /* BORDURĂ ALBĂ */
    box-shadow: 0 0 0 2px var( --e-global-color-primary ); /* UMBRĂ ALBASTRĂ */
}

/* ===== RADIO TEXT (ALWAYS VISIBLE) ===== */
.radio-text {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
}

/* ===== RADIO SCALE (1-20) ===== */
.rating-scale {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    margin: 10px 0;
}

.rating-scale label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.2s;
    border: 1px solid transparent;
    font-size: 16px;
}

.rating-scale label:hover {
    background-color: #f0f0f0;
    border: 1px solid #ddd;
}

/* ===== RADIO GROUP (SEX, RECOMMENDATION) ===== */
.radio-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin: 10px 0;
}

.radio-group label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.2s;
    border: 1px solid transparent;
    font-size: 16px;
}

.radio-group label:hover {
    background-color: #f0f0f0;
    border: 1px solid #ddd;
}

/* ===== SCALE LABELS (Necorespunzătoare / Excelentă) ===== */
.scale-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
    font-size: 0.9em;
    color: #7f8c8d;
}

/* ===== SUBMIT BUTTON ===== */


/* ===== FORM MESSAGE (SUCCESS/ERROR) ===== */
#zaya-form-message {
    margin-top: 20px;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    font-size: 16px;
}

#zaya-form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#zaya-form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 600px) {
    .zaya-satisfaction-form {
        padding: 15px;
    }

    .rating-scale {
        gap: 4px;
    }

    .rating-scale label,
    .radio-group label {
        padding: 6px 8px;
        font-size: 14px;
    }

    .radio-text {
        font-size: 14px;
    }
}