/**
 * CSS for QuiniGol Module.
 */

.lbuho-quinigol-container {
    margin: 20px 0;
    padding: 25px;
    background: #fcfcfc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.015);
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.lbuho-match-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.01);
}

.lbuho-match-header {
    font-weight: 600;
    font-size: 0.95rem;
    color: #1e293b;
    margin-bottom: 10px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 6px;
    display: flex;
    justify-content: space-between;
}

.lbuho-match-num {
    color: #ef4444;
}

.lbuho-teams-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

@media (max-width: 576px) {
    .lbuho-teams-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

.lbuho-team-selection {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.lbuho-team-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
    min-width: 100px;
}

.lbuho-goals-picker {
    display: flex;
    gap: 5px;
}

.lbuho-goal-btn {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    border: 1px solid #cbd5e1;
    background: white;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
}

.lbuho-goal-btn:hover {
    background: #f1f5f9;
}

.lbuho-goal-btn.selected {
    background: #ef4444; /* red for QuiniGol */
    border-color: #ef4444;
    color: white;
    box-shadow: 0 2px 4px rgba(239,68,68,0.25);
}

.lbuho-info-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid #e5e7eb;
}

.lbuho-summary-text {
    font-size: 0.95rem;
    color: #4b5563;
}

.lbuho-summary-val {
    font-weight: bold;
    color: #ef4444;
}
