/* Sidebar - Right Side - OVERRIDE */
.sidebar {
    position: fixed !important;
    top: 110px !important;
    right: -350px !important;
    left: auto !important; /* Override any left positioning */
    width: 320px !important;
    height: calc(100vh - 110px) !important;
    background: white;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    transition: right 0.3s ease !important;
    z-index: 999;
    transform: none !important; /* Override any transform */
}

.sidebar.mobile-open {
    right: 0 !important;
    left: auto !important;
}

.sidebar.collapsed {
    right: -350px !important;
    left: auto !important;
}

/* Sidebar Header */
.sidebar-header {
    padding: 24px;
    border-bottom: 2px solid #e5e5e7;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.sidebar-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.sidebar-subtitle {
    font-size: 13px;
    opacity: 0.9;
}

/* Category Sections */
.category-section {
    border-bottom: 1px solid #e5e5e7;
}

.category-header {
    padding: 16px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s ease;
}

.category-header:hover {
    background: #f5f5f7;
}

.category-name {
    font-size: 15px;
    font-weight: 600;
    color: #1d1d1f;
}

.category-count {
    background: #667eea;
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.category-arrow {
    font-size: 12px;
    color: #6e6e73;
    transition: transform 0.3s ease;
}

.category-section.expanded .category-arrow {
    transform: rotate(90deg);
}

/* Stock List */
.stock-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fafafa;
}

.category-section.expanded .stock-list {
    max-height: 1000px;
}

.stock-item {
    padding: 12px 24px 12px 48px;
    cursor: pointer;
    transition: background 0.2s ease;
    border-left: 3px solid transparent;
}

.stock-item:hover {
    background: #f5f5f7;
    border-left-color: #667eea;
}

.stock-item.active {
    background: #e8ecff;
    border-left-color: #667eea;
}

.stock-ticker-sidebar {
    font-size: 14px;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 2px;
}

.stock-name-sidebar {
    font-size: 12px;
    color: #6e6e73;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .sidebar {
        right: -100% !important;
        left: auto !important;
        width: 100% !important;
        top: 65px !important;
        height: calc(100vh - 65px) !important;
    }
    
    .sidebar.mobile-open {
        right: 0 !important;
        left: auto !important;
    }
    
    .sidebar.collapsed {
        right: -100% !important;
        left: auto !important;
    }
}
