/* League Selection Buttons */
.tagcloud a.ls-league-selection-btn {
    border-width: 0px;
    margin: 3px;
    transition: all 0.2s ease;
    position: relative;
    padding: 6px 10px 6px 22px;
    font-size: 11px;
    cursor: pointer;
}

.tagcloud a.ls-league-selection-btn.selected {
    background-color: rgba(159, 233, 0, 0.2) !important;
    border-color: #9fe900 !important;
}

.tagcloud a.ls-league-selection-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.ls-color-indicator {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
}

/* Season Selection Buttons */
.tagcloud a.ls-season-selection-btn {
    border-width: 0px;
    margin: 4px;
    transition: all 0.2s ease;
    padding: 8px 16px;
    font-size: 13px;
    cursor: pointer;
}

.tagcloud a.ls-season-selection-btn.selected {
    background-color: rgba(159, 233, 0, 0.2) !important;
    border-color: #9fe900 !important;
}

.tagcloud a.ls-season-selection-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Selection Sections */
.ls-selection-section {
    margin-bottom: 24px;
    padding: 0 4px;
}

.ls-selection-section:last-child {
    margin-bottom: 0;
}

.ls-selection-section h6 {
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 600;
    color: #85a9c3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ls-selection-container {
    overflow-y: visible;
    padding: 8px 0;
}

.ls-selection-container.scrollable {
    max-height: 200px;
    overflow-y: auto;
}

.ls-selection-container::-webkit-scrollbar {
    width: 6px;
}

.ls-selection-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.ls-selection-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.ls-selection-container::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Helper Text */
.ls-helper-text {
    font-size: 12px;
    color: #85a9c3;
    font-style: italic;
    padding: 8px 12px;
    background: rgba(159, 233, 0, 0.05);
    border-radius: 4px;
    border-left: 2px solid #9fe900;
    margin-top: 8px;
}

/* Season Actions */
.ls-season-actions {
    display: inline-block;
    margin-left: 10px;
}

.ls-season-action-btn {
    font-size: 10px;
    padding: 2px 8px;
    margin: 0 2px;
    background: transparent;
    border: 1px solid rgba(133, 169, 195, 0.3);
    color: #85a9c3;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ls-season-action-btn:hover {
    background: rgba(159, 233, 0, 0.1);
    border-color: #9fe900;
    color: #9fe900;
}

/* Empty State */
.ls-empty-state {
    text-align: center;
    padding: 60px 30px;
    color: #85a9c3;
}

.ls-empty-state h5 {
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.ls-empty-state p {
    font-size: 14px;
    color: #85a9c3;
    margin: 0;
    line-height: 1.6;
}

/* Chart Container */
.ls-chart-canvas-wrapper {
    width: 100%;
    height: 100%;
    min-height: 400px;
    padding: 20px 10px;
    position: relative;
}

.ls-chart-canvas-wrapper canvas {
    max-height: 500px;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .ls-chart-canvas-wrapper {
        min-height: 350px;
        padding: 15px 5px;
    }
}

@media (max-width: 768px) {
    .ls-selection-section {
        margin-bottom: 16px;
    }

    .ls-selection-section h6 {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .ls-league-selection-btn,
    .ls-season-selection-btn {
        font-size: 10px;
        padding: 5px 8px 5px 18px;
        margin: 2px;
    }

    .ls-color-indicator {
        width: 6px;
        height: 6px;
        left: 6px;
    }

    .ls-selection-container.scrollable {
        max-height: 150px;
    }

    .ls-chart-canvas-wrapper {
        min-height: 300px;
        padding: 12px 5px;
    }

    .ls-chart-canvas-wrapper canvas {
        max-height: 350px;
    }

    .ls-empty-state {
        padding: 30px 15px;
    }

    .ls-empty-state h5 {
        font-size: 16px;
    }

    .ls-empty-state p {
        font-size: 13px;
    }

    .ls-season-action-btn {
        font-size: 9px;
        padding: 2px 6px;
    }

    .ls-helper-text {
        font-size: 11px;
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .ls-league-selection-btn,
    .ls-season-selection-btn {
        font-size: 9px;
        padding: 4px 6px 4px 16px;
        margin: 2px 1px;
    }

    .ls-color-indicator {
        width: 5px;
        height: 5px;
        left: 5px;
    }

    .ls-selection-container.scrollable {
        max-height: 120px;
    }

    .ls-chart-canvas-wrapper {
        min-height: 250px;
        padding: 10px 3px;
    }

    .ls-chart-canvas-wrapper canvas {
        max-height: 300px;
    }

    .ls-empty-state {
        padding: 25px 12px;
    }

    .ls-empty-state h5 {
        font-size: 14px;
    }

    .ls-empty-state p {
        font-size: 12px;
    }
}
