/* Professional Glassmorphism & Modern Styling for Live Scores */

/* Professional Minimalist Inline Styling for Live Scores */

.lsp-scoreboard-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    margin: 15px 0;
}

.lsp-match-card.lsp-minimalist {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.lsp-min-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #edf2f7;
    padding-bottom: 6px;
    margin-bottom: 2px;
}

.lsp-min-league {
    font-size: 11px;
    font-weight: 700;
    color: #a0aec0;
    text-transform: uppercase;
}

.lsp-min-status {
    font-size: 10px;
    font-weight: 700;
    color: #718096;
    background: #edf2f7;
    padding: 2px 6px;
    border-radius: 4px;
}

.lsp-min-status.lsp-live {
    color: #e53e3e;
    background: #fed7d7;
    animation: lsp-pulse 2s infinite;
}

.lsp-min-teams {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lsp-min-team {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lsp-min-flag {
    width: 20px;
    height: 14px;
    background-size: cover;
    background-position: center;
    border-radius: 2px;
    border: 1px solid #e2e8f0;
    margin-right: 8px;
    flex-shrink: 0;
}

.lsp-min-name {
    font-size: 13px;
    font-weight: 600;
    color: #2d3748;
    flex-grow: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lsp-min-score {
    font-size: 13px;
    font-weight: 800;
    color: #1a202c;
    margin-left: 10px;
}

.lsp-no-matches {
    grid-column: 1 / -1;
    text-align: center;
    padding: 20px;
    color: #718096;
    background: #fff;
    border-radius: 8px;
}

@keyframes lsp-pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

@media (max-width: 900px) {
    .lsp-scoreboard-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .lsp-scoreboard-container {
        grid-template-columns: 1fr;
    }
}

