/* Estilos para relatórios no frontend */
.acm-frontend-report {
    margin: 20px 0;
}

.acm-report-table {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0;
    font-size: 14px;
}

.acm-report-table th,
.acm-report-table td {
    padding: 8px 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.acm-report-table th {
    background-color: #f5f5f5;
    font-weight: bold;
    color: #333;
}

.acm-report-table tr:hover {
    background-color: #f9f9f9;
}

.acm-report-table td {
    color: #666;
}

/* Responsividade para tabelas */
@media (max-width: 768px) {
    .acm-report-table {
        font-size: 12px;
    }
    
    .acm-report-table th,
    .acm-report-table td {
        padding: 6px 8px;
    }
}

/* Estilos para botões ACM (caso não sejam definidos inline) */
.acm-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #0073aa;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.acm-button:hover {
    background-color: #005a87;
    color: #ffffff;
    text-decoration: none;
}

