/* 🔹 Container principal para organizar o layout */
#feedback-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
}

/* 🔹 Formulário de feedback */
#feedback-form-container {
    flex: 1;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    border: 1px solid #ddd;
    min-width: 280px;
    max-width: 100%;
}

/* 🔹 Estilização do formulário */
#feedback-form label {
    display: block;
    font-weight: bold;
    margin-top: 10px;
    font-size: 0.9rem;
    color: #333;
}

#feedback-form input,
#feedback-form textarea {
    width: 100%;
    padding: 12px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    transition: border 0.3s ease-in-out;
    box-sizing: border-box;
}

#feedback-form input:focus,
#feedback-form textarea:focus {
    border: 1px solid #007bff;
    outline: none;
}

#feedback-form button {
    width: 100%;
    padding: 12px;
    margin-top: 15px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

#feedback-form button:hover {
    background: #0056b3;
}

/* 🔹 Lista de feedbacks */
#feedback-list {
    flex: 1;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    border: 1px solid #ddd;
    max-height: 400px;
    overflow-y: auto;
    min-width: 280px;
    max-width: 100%;
}

/* 🔹 Responsivo: Em telas menores, os elementos ficam um abaixo do outro */
@media (max-width: 768px) {
    #feedback-section {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    #feedback-form-container,
    #feedback-list {
        max-width: 600px;
    }
}