.logo-container {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

.logo-container img {
    max-width: 80%;
    height: auto;
    margin-bottom: 20px;
}


.logo-container img {
    max-width: 80%;
}

button {
    font-size: 1.2rem;
    padding: 10px;
    margin: 5px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    transition: transform 0.2s;
    width: auto;
    max-width: 80px;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Centers horizontally */
    background-color: #000000;
    color: #ffffff;
    margin: 0;
    padding: 20px 20px 0;
    min-height: 100vh;
    box-sizing: border-box;
}

.feedback-container {
    text-align: center;
    background: #000000;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    padding: 20px;
    width: 90%;
    max-width: 500px;
    margin-top: 20px;
    margin-bottom: auto;
}

.buttons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

button {
    font-size: 1.5rem;
    padding: 10px;
    margin: 5px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    transition: transform 0.2s;
    width: 80px;
}

button:hover {
    transform: scale(1.1);
}

.thumbs-up {
    background-color: #28a745;
    color: #000;
}

.thumbs-down {
    background-color: #dc3545;
    color: #000;
}

.feedback-form {
    display: flex;
    flex-direction: column;
    width: 90%;
    max-width: 500px;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
}

.feedback-form textarea {
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-family: Arial, sans-serif;
    resize: vertical;
    width: 100%;
    box-sizing: border-box;
}

.feedback-form input[type="email"] {
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-family: Arial, sans-serif;
    width: 100%;
    box-sizing: border-box;
}

.feedback-form button {
    align-self: center;
    background-color: #F7BD01;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.feedback-form button:hover {
    background-color: #dba800;
}