/* Estilos para Club Appetite */
.club-appetite-dashboard {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.points-summary, 
.discount-available {
    background: white;
    padding: 15px;
    margin: 15px 0;
    border-radius: 5px;
    border-left: 4px solid #007cba;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.discount-available {
    border-left-color: #28a745;
}

.discount-status {
    font-weight: bold;
    padding: 10px;
    border-radius: 4px;
    background: #e7f3ff;
    margin-top: 10px;
}

.points-progress {
    background: white;
    padding: 15px;
    margin: 15px 0;
    border-radius: 5px;
    border-left: 4px solid #ffc107;
}

.club-appetite-dashboard h3,
.club-appetite-dashboard h4 {
    margin-top: 0;
    color: #333;
}

.club-appetite-dashboard p {
    margin: 8px 0;
    line-height: 1.5;
}

.club-appetite-dashboard strong {
    color: #007cba;
}

/* Responsive */
@media (max-width: 768px) {
    .club-appetite-dashboard {
        padding: 15px;
        margin: 10px 0;
    }
    
    .points-summary, 
    .discount-available,
    .points-progress {
        padding: 12px;
        margin: 10px 0;
    }
}