body {
    font-family: 'Posterama', sans-serif;
    background-color: #f0fdf4;
    color: #333;
    max-width: 700px;
    margin: auto;
    padding: 20px;
}

header {
    background-color: #34d399;
    padding: 15px;
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    color: white;
    border-radius: 10px;
}

header a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    float: left;
    margin-left: 15px;
}

h2 {
    text-align: center;
    font-size: 28px;
    color: #047857;
}

h3 {
    font-size: 22px;
    color: #059669;
}

.question {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #d1fae5;
    border-radius: 8px;
}

.section { display: none; }
.active { display: block; }

.scale-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.scale-table {
    width: 100%;
    table-layout: fixed;
}

.scale-table td {
    text-align: center;
    padding: 10px;
    width: 14%;
}

.scale-table input {
    transform: scale(1.5);
    margin: 5px;
}

button {
    padding: 12px;
    background-color: #10b981;
    color: white;
    font-size: 18px;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-top: 15px;
    border-radius: 6px;
}

button:hover { background-color: #059669; }

#resultContainer { display: none; text-align: center; }
