/* ===============================
   MBMUSIC SURVEY – FORM STYLE
=============================== */

.mbmusic-survey {
    max-width: 1040px;
    margin: 24px auto;
    padding: 36px 40px;
    background: #323335; /* ⬅️ stabilnija tamna nijansa za iOS */
    border-radius: 18px;
    box-shadow: 0 16px 45px rgba(0,0,0,0.4);
    font-family: Arial, sans-serif;
    color: #f1f1f1;
}

/* LOGO */
.mbmusic-survey-logo {
    text-align: center;
    margin-bottom: 32px;
}

.mbmusic-survey-logo img {
    max-width: 150px;
    height: auto;
}

/* NASLOVI */
.mbmusic-survey p strong {
    display: block;
    margin-top: 40px;
    margin-bottom: 18px;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

/* ODGOVORI */
.mbmusic-survey label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    margin-bottom: 14px;
    border-radius: 14px;
    border: 1px solid #3f4043;
    background: #ffffff;
    color: #111;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.mbmusic-survey label:hover {
    background: #f9f7f2;
    border-color: #DCA54A;
}

/* RADIO */
.mbmusic-survey input[type="radio"] {
    accent-color: #DCA54A;
}

/* OZNAČENI ODGOVOR */
.mbmusic-survey label.is-checked {
    background: #fff1d6;
    border-color: #DCA54A;
    box-shadow: 0 0 0 1px rgba(220,165,74,0.35);
}

/* EMAIL */
.mbmusic-survey input[type="email"] {
    width: 100%;
    padding: 16px 18px;
    font-size: 16px;
    border-radius: 14px;
    border: 1px solid #ccc;
    background: #ffffff;
    color: #111;
}

/* SUBMIT */
.mbmusic-survey button {
    margin-top: 40px;
    width: 100%;
    padding: 20px;
    font-size: 17px;
    font-weight: bold;
    border-radius: 16px;
    border: none;
    cursor: pointer;
    background: #DCA54A;
    color: #111;
}

.mbmusic-survey button:hover {
    background: #e6b45c;
}

/* ===============================
   MOBILE – FORCE BACKGROUND
=============================== */

@media (max-width: 768px) {

    .mbmusic-survey {
        background: #323335 !important;
        color: #f5f5f5;
    }

        /* NASLOVI PITANJA – BIJELI NA MOBITELU */
    .mbmusic-survey p strong {
        color: #ffffff !important;
    }

}



