/* js/tracker.css - Custom styles for the Tracker View */

#tracker-view-stage {
    background: radial-gradient(circle at center, rgba(0, 20, 30, 0.3) 0%, rgba(0, 2, 5, 0.7) 100%);
    pointer-events: none;
}

/* Glassmorphism for the tracker overlay */
#tracker-view-advanced {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    padding: 8px;
    margin-top: 8px;
}

/* Specific scanline texture overlay if needed */
.crt-scanlines {
    position: relative;
}

.crt-scanlines::after {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.1) 50%);
    background-size: 100% 4px;
    z-index: 100;
    pointer-events: none;
    opacity: 0.5;
}
/* Tracker tab sub-navigation (Horizontal) */
.tracker-container {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tracker-nav {
    display: flex;
    flex-direction: row;
    padding: 0.5rem 1rem;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.2);
}

.tracker-subtab-btn {
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.4);
    background: transparent;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tracker-subtab-btn svg {
    opacity: 0.6;
}

.tracker-subtab-btn:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.05);
}

.tracker-subtab-btn.active {
    color: #22d3ee;
    background: rgba(34, 211, 238, 0.1);
    box-shadow: 0 0 15px rgba(34, 211, 138, 0.05);
}

.tracker-subtab-btn.active svg {
    opacity: 1;
}

.tracker-pane {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
}

/* Base scrollbar reset for tracker sub-lists */
.tracker-scrollable {
    scrollbar-width: thin;
    scrollbar-color: rgba(34, 211, 238, 0.3) rgba(0, 0, 0, 0.2);
}

/* Webkit specific scrollbar for high consistency */
.tracker-scrollable::-webkit-scrollbar {
    width: 6px !important;
    height: 6px !important;
}

.tracker-scrollable::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2) !important;
    border-radius: 10px !important;
}

.tracker-scrollable::-webkit-scrollbar-thumb {
    background: rgba(34, 211, 238, 0.3) !important;
    border-radius: 10px !important;
    border: 2px solid transparent !important;
    background-clip: content-box !important;
}

.tracker-scrollable::-webkit-scrollbar-thumb:hover {
    background: rgba(34, 211, 238, 0.6) !important;
    border: 1px solid transparent !important;
}

.tracker-pane.hidden {
    display: none;
}
