/* css/avaliar_admins.css */

/* Estilos gerais inspirados no login.css */
body {
    background-color: #121212;
    color: #e0e0e0;
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

.section {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 60px;
    background-color: #111;
    min-height: calc(100vh - 150px);
}

.evaluation-container {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 600px;
    text-align: center;
    box-sizing: border-box;
}

/* Flip Logic removed */

/* Flip Header (Reused for title and link) */
.flip-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    position: relative;
}

.flip-header h1 {
    color: #00ff99;
    font-size: 2em;
    margin-bottom: 10px;
}

.flip-btn {
    background: none;
    border: none;
    color: #00ff99;
    font-size: 1.5em;
    cursor: pointer;
    transition: transform 0.3s, color 0.3s;
    padding: 0 10px;
    position: absolute;
    right: 0;
}

.flip-btn:hover {
    transform: scale(1.1);
    color: #ffffff;
}

.evaluation-container h1 {
    color: #00ff99;
    font-size: 2em;
}

.evaluation-container > p {
    color: #ccc;
    font-size: 1.1em;
    margin: 0 auto 25px;
    text-align: center;
}

#admin-list {
    margin-bottom: 30px;
    text-align: left;
}

.admin-card {
    background-color: #2a2a2a;
    border: 1px solid #444;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.admin-card:hover {
    background-color: #333;
}

.admin-card h2 {
    margin: 0;
    color: #e0e0e0;
    font-size: 1.2em;
    font-weight: 500;
}

.star-rating {
    display: flex;
    flex-direction: row-reverse; /* Inverte a ordem para o efeito de hover funcionar corretamente */
    justify-content: flex-end;
}

.star-rating input[type="radio"] {
    display: none;
}

.star-rating label {
    font-size: 24px;
    color: #555;
    cursor: pointer;
    transition: color 0.2s;
    padding: 0 3px;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input[type="radio"]:checked ~ label {
    color: #ffc107; /* Amarelo para estrelas selecionadas/hover */
}

#submit-all-button,
#submit-all-estagiarios-button {
    background-color: #00ff99;
    color: #000000;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    width: 100%;
    transition: background-color 0.3s, opacity 0.3s;
}

#submit-all-button:disabled,
#submit-all-estagiarios-button:disabled {
    background-color: #555;
    opacity: 0.6;
    cursor: not-allowed;
}

#submit-all-button:not(:disabled):hover,
#submit-all-estagiarios-button:not(:disabled):hover {
    background-color: #ffffff;
    box-shadow: 0 0 15px rgba(0, 255, 153, 0.4);
}

.message {
    text-align: center;
    margin-top: 20px;
    padding: 12px;
    border-radius: 5px;
    font-weight: 500;
}

.message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
