/* Estilos gerais */
.nar-form-container, .nar-aggressometer-container, .nar-admin-container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nar-form-group {
    margin-bottom: 20px;
}

.nar-form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.nar-form-control:focus {
    border-color: #0073aa;
    outline: none;
    box-shadow: 0 0 0 1px #0073aa;
}

.nar-radio-group label {
    margin-right: 15px;
    cursor: pointer;
}

.nar-submit-btn {
    background-color: #0073aa;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.nar-submit-btn:hover {
    background-color: #005a87;
}

/* Cards de estatísticas */
.nar-stats-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.nar-stat-card {
    background-color: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.nar-stat-card h3 {
    margin-top: 0;
    color: #555;
    font-size: 16px;
}

.nar-stat-number {
    font-size: 24px;
    font-weight: bold;
    color: #0073aa;
    margin: 10px 0 0;
}

/* Gráfico */
.nar-chart-container {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

/* Admin */
.nar-reports-table {
    margin-top: 20px;
}

.nar-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.nar-modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    max-width: 700px;
    position: relative;
}

.nar-close-modal {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
}

/* Responsivo */
@media (max-width: 768px) {
    .nar-stats-cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .nar-stats-cards {
        grid-template-columns: 1fr;
    }
    
    .nar-form-container, .nar-aggressometer-container {
        padding: 15px;
    }
}