/* Frontend Votação */
.se-container {
    max-width: 1000px;
    margin: 40px auto;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}
.se-header {
    text-align: center;
    margin-bottom: 30px;
}
.se-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.se-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    position: relative;
}
.se-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    border-color: #3182ce;
}
.se-card input[type="radio"] {
    display: none;
}
.se-card.selected {
    border: 2px solid #3182ce;
    background-color: #ebf8ff;
}
.se-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
    background: #eee;
}
.se-name {
    font-weight: 700;
    font-size: 1.1em;
    color: #2d3748;
    margin-bottom: 5px;
}
.se-desc {
    font-size: 0.9em;
    color: #718096;
    margin-bottom: 15px;
}
.se-btn-vote {
    background: #3182ce;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 30px auto;
    transition: background 0.3s;
}
.se-btn-vote:hover {
    background: #2b6cb0;
}
.se-message {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
}
.se-success { background: #c6f6d5; color: #22543d; }
.se-error { background: #fed7d7; color: #822727; }

/* Admin Dashboard Custom */
.wrap.se-dashboard {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.se-stats-grid {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}
.se-stat-box {
    flex: 1;
    background: #f7fafc;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}
.se-stat-number { font-size: 2em; font-weight: bold; color: #2d3748; }
.chart-container { max-width: 600px; margin: 0 auto; }