/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 🌐 BASE */
body {
    background: linear-gradient(135deg, #f2f2f2, #d0d8e7);
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #2c3e50;
}

/* 📦 CONTAINER */
.container {
    margin-top: 30px;
    margin-bottom: 30px;
}

/* 🧾 CARD (mais leve) */
.card-custom {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* 🏷️ TÍTULO */
.page-title {
    color: #2c3e50;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* 🔘 BOTÕES (mais discretos) */
.btn-primary {
    background: #2c3e50;
    border: none;
    border-radius: 6px;
    padding: 8px 14px;
    font-size: 14px;
}

.btn-primary:hover {
    background: #1f2d3a;
}

.btn-success,
.btn-warning,
.btn-danger {
    border-radius: 6px;
    font-size: 13px;
}

/* 📋 TABELA */
.table-custom {
    background: #ffffff;
    border: 1px solid #e0e0e0;
}

.table-custom thead {
    background: #f5f6f8;
    color: #333;
}

.table-custom th {
    font-weight: 600;
    font-size: 14px;
}

.table-custom td {
    font-size: 14px;
}

.table-custom tbody tr:hover {
    background: #f9f9f9;
}

/* 🧾 FORM */
.form-control {
    border-radius: 6px;
    border: 1px solid #ccc;
    padding: 8px;
    font-size: 14px;
}

.form-control:focus {
    border-color: #4a6fa5;
    box-shadow: none;
}

/* 🔔 ALERT */
.alert {
    border-radius: 6px;
    font-size: 13px;
}


/* 📦 Container */
.urna-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
}

/* ▶ Botão iniciar */
.btn-iniciar {
    font-size: 22px;
    padding: 20px 40px;
    border: none;
    border-radius: 10px;
    background: #2c3e50;
    color: #fff;
}

/* 📋 Lista */
.lista-chapas {
    width: 100%;
    max-width: 500px;
}

/* 🟦 Card da chapa */
.chapa-card {
    display: block;
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    cursor: pointer;
    background: #fff;
    transition: all 0.2s ease;
}

/* hover leve */
.chapa-card:hover {
    background: #f5f6f8;
}

/* ESCONDE RADIO */
.chapa-card input {
    display: none;
}

/* CONTEÚDO */
.conteudo {
    text-align: center;
    padding: 10px;
    border-radius: 8px;
}

/* 🔥 SELECIONADO */
.chapa-card input:checked + .conteudo {
    background: #e3f2fd;
    border: 2px solid #2196f3;
    transform: scale(1.03);
}

/* número */
.numero {
    font-size: 28px;
    font-weight: bold;
}

/* nome */
.nome {
    font-size: 16px;
}

/* ✔ Botão confirmar */
.btn-confirmar {
    margin-top: 20px;
    font-size: 18px;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    background: #2e7d32;
    color: #fff;
}

/* ✔ Ícone */
.sucesso-icon {
    font-size: 60px;
    color: #2e7d32;
    margin-bottom: 10px;
}