body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    /*background-color: #f5f5f5;*/
    background-image: url("/img/background.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.col-white {
    color: white;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(27, 83, 103, 0.50);
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.2);
    border: 1px solid #ffffff50;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.logo > img {
    width: 100%;
    max-width: 400px;
}

h1 {
    color: #333;
    text-align: center;
}

.question {
    margin-bottom: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 5px;
}

.question--rating {
    background: #f0f0f0;
}

label {
    display: block;
    margin-bottom: 10px;
}

input[type="text"], textarea {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.submit-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

button {
    background-color: #7a3281;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    border: 1px solid #ffffff50;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #9d41a6;
}

.success {
    color: #7a3281;
    padding: 10px;
    background-color: #ffffff;
    border-radius: 4px;
    margin-bottom: 20px;
    text-align: center;
}

.error {
    color: red;
    padding: 10px;
    background-color: #f8d7da;
    border-radius: 4px;
    margin-bottom: 20px;
}

.admin-controls {
    margin-top: 20px;
    text-align: center;
}

.admin-controls a {
    margin: 0 10px;
    text-decoration: none;
    color: #007bff;
}

.rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.rating input {
    display: none;
}

.rating label {
    cursor: pointer;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    background-color: #ccc;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: bold;
}

.rating input:checked ~ label {
    background-color: #7a3281;
    color: white;
}

.rating label:hover,
.rating label:hover ~ label {
    background-color: #7a3281;
    color: white;
}

.footer {
    text-align: right;
    padding-top: 1rem;
}

.footer-text {
    color: #ffffff;
    font-size: 0.7rem;
}