/* Container da Pesquisa */
.survey-container {
    width: 90%;
    max-width: 600px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Imagem de Pesquisa de Qualidade */
.survey-image {
    width: 20%;
    max-width: 500px;
    margin: 20px auto;
    display: block;
    border-radius: 8px;
}

/* Lista de Botões dos Atendentes */
.attendants-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.attendant-button {
    background-color: #2196F3;
    color: white;
    padding: 10px 15px;
    margin: 5px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s;
}

.attendant-button:hover {
    background-color: #1976D2;
}

.attendant-button.selected {
    background-color: #FF5722;
}

/* Container de Emojis e Números */
.rating-container {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
    flex-wrap: wrap;
    gap: 10px;
}

.emoji-label {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.emoji {
    font-size: 1.8em;
    margin-bottom: 5px;
}

.rating-number {
    font-size: 1em;
    color: #555;
}

/* Botão de Submissão */
.submit-button {
    background-color: #4CAF50;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #388E3C;
}

/* Legenda */
.legend {
    font-size: 0.9em;
    color: #777;
    margin-top: 10px;
}

/* Geral */
body, html {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f3f4f6;
}

h1 {
    color: #333;
    font-size: 1.8em;
    margin-bottom: 20px;
    text-align: center;
}

.container {
    width: 90%;
    max-width: 600px;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Botões Gerais */
.add-button, .filter-button, .export-button, .logout-button {
    padding: 10px 20px;
    margin: 10px 5px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    color: white;
    transition: background-color 0.3s;
}

.add-button {
    background-color: #4CAF50;
}

.filter-button {
    background-color: #2196F3;
}

.export-button {
    background-color: #FF9800;
}

.logout-button {
    background-color: #FF5722;
}

.add-button:hover {
    background-color: #388E3C;
}

.filter-button:hover {
    background-color: #1976D2;
}

.export-button:hover {
    background-color: #FB8C00;
}

.logout-button:hover {
    background-color: #E64A19;
}

/* Tabela de Dados */
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.data-table th, .data-table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: center;
    font-size: 1em;
}

.data-table th {
    background-color: #f3f3f3;
}


/* Lista de Atendentes */
ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

