/* container */
.feedback-container {
    max-width: 600px;
    margin: 80px auto;
    padding: 25px;

    background: rgba(15, 23, 42, 0.75);
    border-radius: 14px;

    border: 1px solid rgba(56, 189, 248, 0.15);
    backdrop-filter: blur(10px);
}

/* titolo */
.feedback-container h1 {
    color: #38bdf8;
    margin-bottom: 10px;
}

/* testo intro */
.feedback-container .seo-intro {
    color: #cbd5f5;
    font-size: 14px;
    margin-bottom: 15px;
}

/* form */
.feedback-container form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* label */
.feedback-container label {
    color: #94a3b8;
    font-size: 13px;
}

/* input base */
.feedback-container textarea,
.feedback-container select {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(56, 189, 248, 0.15);
    border-radius: 8px;
    padding: 10px;

    color: #e2e8f0;
    font-size: 14px;

    outline: none;
    transition: all 0.2s ease;
}

/* focus */
.feedback-container textarea:focus,
.feedback-container select:focus {
    border-color: #38bdf8;
    box-shadow: 0 0 0 2px rgba(56, 189, 248, 0.2);
}

/* textarea */
.feedback-container textarea {
    resize: vertical;
    min-height: 100px;
}

/* SELECT FIX (miglioramento UI) */
.feedback-container select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-image: url("data:image/svg+xml;utf8,<svg fill='%2338bdf8' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M5 7l5 5 5-5H5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;

    padding-right: 35px;
}

/* option (limitato ma utile) */
.feedback-container select option {
    background: #0f172a;
    color: #e2e8f0;
}

/* bottone */
.feedback-container button {
    margin-top: 10px;

    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    border: none;
    padding: 12px;
    border-radius: 10px;

    color: #0f172a;
    font-weight: 600;

    cursor: pointer;
    transition: all 0.25s ease;
}

.feedback-container button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* status */
#feedback-status {
    margin-top: 10px;
    font-size: 14px;
    color: #94a3b8;
}