/* Compact Attention Module Styles */
.compact-attention-module {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    background-color: var(--bs-warning-bg-subtle, #fff3cd);
    border: 1px solid var(--bs-warning-border-subtle, #ffecb5);
    color: var(--bs-warning-text-emphasis, #664d03);
}

.compact-attention-module .attention-item {
    min-height: auto;
    padding-bottom: 0.75rem;
    margin-bottom: 0.75rem;
    border-bottom-color: var(--bs-warning-border-subtle, #ffecb5) !important;
}

.compact-attention-module .attention-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none !important;
}

.compact-attention-module .league-info {
    min-width: 0; /* Enable text truncation */
}

.compact-attention-module .fw-semibold {
    font-size: 0.95rem;
}

.compact-attention-module .badge.small {
    font-size: 0.7rem;
    padding: 0.2rem 0.4rem;
}

.compact-attention-module .text-warning-emphasis,
.compact-attention-module .text-success-emphasis {
    font-size: 0.875rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .compact-attention-module {
        padding: 0.75rem;
    }
    
    .compact-attention-module .attention-item {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 0.5rem;
    }
    
    .compact-attention-module .btn {
        width: 100%;
        margin-top: 0.5rem;
    }
    
    .compact-attention-module .d-flex.flex-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem !important;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .compact-attention-module {
        background-color: rgba(255, 193, 7, 0.1);
        border-color: rgba(255, 193, 7, 0.3);
        color: #ffc107;
    }
    
    .compact-attention-module .attention-item {
        border-bottom-color: rgba(255, 193, 7, 0.2) !important;
    }
    
    .compact-attention-module .text-warning-emphasis {
        color: #ffc107;
    }
    
    .compact-attention-module .text-success-emphasis {
        color: #28a745;
    }
}