/* Frontend Styles */
.nfse-frontend-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.nfse-frontend-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: center;
}

.nfse-frontend-header h1 {
    margin: 0;
    font-size: 2.2em;
}

.nfse-frontend-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #667eea;
}

.nfse-frontend-card h2 {
    color: #333;
    margin-top: 0;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.nfse-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.nfse-stat-item {
    text-align: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.nfse-stat-number {
    font-size: 2em;
    font-weight: bold;
    color: #667eea;
    display: block;
}

.nfse-stat-label {
    color: #666;
    font-size: 0.9em;
}

/* Formulários frontend */
.nfse-frontend-form .form-group {
    margin-bottom: 20px;
}

.nfse-frontend-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.nfse-frontend-form .form-control {
    width: 100%;
    padding: 12px;
    border: 2px solid #e1e5e9;
    border-radius: 5px;
    font-size: 14px;
}

.nfse-frontend-form .btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
}

/* Tabelas frontend */
.nfse-frontend-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.nfse-frontend-table th,
.nfse-frontend-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e1e5e9;
}

.nfse-frontend-table th {
    background: #f8f9fa;
    font-weight: 600;
}

/* Responsivo */
@media (max-width: 768px) {
    .nfse-frontend-container {
        padding: 10px;
    }
    
    .nfse-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .nfse-frontend-header h1 {
        font-size: 1.8em;
    }
}