/* ===== ESTILOS PARA SISTEMA DE COMISSÕES ===== */

.commissions-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.header-actions {
    display: flex;
    gap: 10px;
}

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

.commissions-main {
    gap: 20px;
    margin-bottom: 30px;
}

.commission-form-section,
.partners-list-section {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-card {
    margin-top: 15px;
}

.partner-select, .money-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.money-input {
    font-family: 'Courier New', monospace;
    font-weight: bold;
    font-size: 18px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.partners-list {
    margin-top: 15px;
    max-height: 400px;
    overflow-y: auto;
}

.partner-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 10px;
    background: #f8f9fa;
}

.partner-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.partner-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.partner-name {
    font-weight: bold;
    color: #2c3e50;
}

.partner-email {
    font-size: 12px;
    color: #7f8c8d;
}

.partner-stats {
    display: flex;
    gap: 15px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-label {
    font-size: 11px;
    color: #7f8c8d;
    text-transform: uppercase;
}

.stat-value {
    font-weight: bold;
    color: #2c3e50;
}

.btn-small {
    padding: 6px 12px;
    font-size: