/* Estilos do Dashboard de Afiliados Faroeste Beer */

.faroeste-affiliate-dashboard {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    font-family: 'Open Sans', sans-serif;
}

.faroeste-affiliate-dashboard h2 {
    color: #333;
    border-bottom: 2px solid #c69c6d;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.faroeste-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: #c69c6d;
}

.stat-card h3 {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.stat-card p {
    font-size: 24px;
    font-weight: bold;
    color: #c69c6d;
    margin: 0;
}

.faroeste-dashboard-charts {
    margin-bottom: 40px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.faroeste-dashboard-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.faroeste-dashboard-sections section {
    background: #fdfdfd;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.faroeste-dashboard-sections h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.faroeste-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.faroeste-table th, .faroeste-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.faroeste-table th {
    background: #f4f4f4;
    color: #555;
    font-weight: 600;
}

.faroeste-table tr:hover {
    background: #fafafa;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background: #c69c6d;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
}

.button:hover {
    background: #a57e53;
}

@media (max-width: 768px) {
    .faroeste-dashboard-sections {
        grid-template-columns: 1fr;
    }
}
