/**
 * SCALP COMPONENT STYLES
 * Desktop Pro Design - Crypto Tek AI
 */

/* ═══════════════════════════════════════════════════════════════
   BASE STYLES (Mobile First)
   ═══════════════════════════════════════════════════════════════ */

.scalp-container {
    padding: 0 16px 100px 16px;
    background: linear-gradient(180deg, #0a0e1a 0%, #0f1525 100%);
    min-height: 100vh;
}

/* ═══════════════════════════════════════════════════════════════
   SCALP PAGE HEADER - NEW DESIGN
   ═══════════════════════════════════════════════════════════════ */

.scalp-page-header {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.12) 0%, rgba(36, 129, 204, 0.12) 50%, rgba(76, 175, 80, 0.08) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 16px;
    margin: 0 -16px 16px;
}

.scalp-header-main {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.scalp-header-info h1 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px;
}

.scalp-header-info p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.scalp-header-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.scalp-exchange-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.scalp-exchange-badge .exchange-icon {
    font-size: 14px;
}

.scalp-type-badge {
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
}

/* Trade Type Tabs (Scalping/Swing) */
.scalp-header-controls {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trade-type-tabs {
    display: flex;
    gap: 8px;
    background: rgba(0, 0, 0, 0.2);
    padding: 4px;
    border-radius: 10px;
}

.trade-type-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.trade-type-tab:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.05);
}

.trade-type-tab.active {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: #fff;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.trade-type-tab .tab-icon {
    font-size: 16px;
}

.trade-type-tab .tab-label {
    display: none;
}

/* Header Actions */
.scalp-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.scalp-header-actions .mode-selector {
    display: flex;
    gap: 6px;
    flex: 1;
}

.scalp-header-actions .mode-btn {
    flex: 1;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.scalp-header-actions .mode-btn.active {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    border: none;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.scalp-header-actions .mode-btn:not(.active):hover {
    background: rgba(255, 255, 255, 0.15);
}

.scalp-header-actions .refresh-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 10px 12px;
    cursor: pointer;
    color: #fff;
    font-size: 16px;
    transition: all 0.2s ease;
}

.scalp-header-actions .refresh-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.scalp-header-actions .refresh-status {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    display: none;
}

/* Legacy Page Header - Keep for compatibility */
.scalp-container .page-header {
    padding: 20px 16px;
    margin: 0 -16px 16px;
    background: linear-gradient(135deg,
        rgba(255, 107, 53, 0.12) 0%,
        rgba(36, 129, 204, 0.12) 50%,
        rgba(76, 175, 80, 0.08) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.scalp-container .page-header h2 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.scalp-container .page-header p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Mode Selector */
.mode-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 16px;
}

.mode-btn {
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mode-btn.active {
    background: linear-gradient(135deg, #FF6B35, #F7931E) !important;
    border: none !important;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
}

.mode-btn:not(.active):hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Quick Actions */
.quick-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 16px;
}

/* Opportunities List */
.opportunities-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Opportunity Card */
.opportunity-card {
    background: linear-gradient(145deg, rgba(26, 31, 53, 0.95) 0%, rgba(18, 22, 38, 0.98) 100%);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px;
    transition: all 0.2s ease;
}

.opportunity-card:hover {
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Diamond Detector Card */
.diamond-detector-card {
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.12), rgba(103, 58, 183, 0.12));
    border: 1px solid rgba(156, 39, 176, 0.25);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    transition: 0.3s;
    border-radius: 26px;
}

.toggle-slider:before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: white;
    transition: 0.3s;
    border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
    background: linear-gradient(135deg, #9c27b0, #673ab7);
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(24px);
}

/* Refresh Button */
.refresh-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 8px 12px;
    cursor: pointer;
    color: #fff;
    font-size: 16px;
    transition: all 0.2s ease;
}

.refresh-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.refresh-btn.refreshing .refresh-icon {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Chart Button on Card */
.btn-show-chart-card,
.btn-show-chart-analysis {
    transition: all 0.2s ease !important;
}

.btn-show-chart-card:hover,
.btn-show-chart-analysis:hover {
    background: rgba(76, 175, 80, 0.25) !important;
    border-color: rgba(76, 175, 80, 0.6) !important;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

/* Action Buttons */
.action-btn {
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.action-btn:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Loading Spinner */
.loading-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: #FF6B35;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

/* ═══════════════════════════════════════════════════════════════
   DESKTOP RESPONSIVE - 1024px+
   Professional 2-Column Split Layout
   ═══════════════════════════════════════════════════════════════ */

@media (min-width: 1024px) {
    .scalp-container {
        padding: 0 40px 100px 40px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* New Scalp Page Header - Desktop */
    .scalp-page-header {
        padding: 28px 32px;
        margin: 0;
        border-radius: 20px;
        background: linear-gradient(135deg, rgba(255, 107, 53, 0.12) 0%, rgba(36, 129, 204, 0.12) 50%, rgba(76, 175, 80, 0.08) 100%);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .scalp-header-main {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 20px;
    }

    .scalp-header-info h1 {
        font-size: 28px;
    }

    .scalp-header-info p {
        font-size: 14px;
    }

    .scalp-header-meta {
        gap: 12px;
    }

    .scalp-exchange-badge {
        padding: 8px 16px;
        font-size: 14px;
    }

    .scalp-type-badge {
        padding: 6px 14px;
        font-size: 12px;
    }

    /* Trade Type Tabs - Desktop */
    .scalp-header-controls {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }

    .trade-type-tabs {
        flex: 0 0 auto;
        gap: 6px;
        padding: 5px;
        border-radius: 12px;
    }

    .trade-type-tab {
        padding: 12px 28px;
        font-size: 14px;
    }

    .trade-type-tab .tab-label {
        display: inline;
    }

    /* Header Actions - Desktop */
    .scalp-header-actions {
        gap: 12px;
    }

    .scalp-header-actions .mode-selector {
        flex: 0 0 auto;
        background: rgba(0, 0, 0, 0.2);
        padding: 5px;
        border-radius: 10px;
        gap: 4px;
    }

    .scalp-header-actions .mode-btn {
        padding: 10px 20px;
        font-size: 13px;
        border: none;
        background: transparent;
    }

    .scalp-header-actions .mode-btn:not(.active) {
        border: none;
    }

    .scalp-header-actions .mode-btn:not(.active):hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .scalp-header-actions .refresh-btn {
        padding: 10px 14px;
    }

    .scalp-header-actions .refresh-status {
        display: inline;
    }

    /* Legacy Page Header - Compact Desktop */
    .scalp-container .page-header {
        padding: 24px 32px;
        margin: 0;
        border-radius: 16px;
        background: linear-gradient(135deg,
            rgba(255, 107, 53, 0.12) 0%,
            rgba(36, 129, 204, 0.12) 100%);
        border: 1px solid rgba(255, 255, 255, 0.08);
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 16px;
    }

    .scalp-container .page-header h2 {
        font-size: 24px;
        margin: 0;
    }

    .scalp-container .page-header p {
        font-size: 14px;
        margin: 4px 0 0 0;
    }

    /* Mode Selector - Inline Compact */
    .mode-selector {
        display: inline-flex !important;
        gap: 12px;
        margin-bottom: 0;
        background: rgba(0, 0, 0, 0.2);
        padding: 6px;
        border-radius: 12px;
    }

    .mode-btn {
        padding: 10px 24px;
        font-size: 13px;
        border-radius: 8px;
        min-width: 140px;
        text-align: center;
        white-space: nowrap;
    }

    /* Top Controls Row */
    .scalp-top-controls {
        display: flex;
        align-items: center;
        gap: 16px;
        flex-wrap: wrap;
    }

    /* Quick Actions - Compact Inline */
    .quick-actions {
        display: inline-flex !important;
        gap: 12px !important;
        margin-bottom: 0 !important;
    }

    .quick-actions .action-btn {
        padding: 10px 20px;
        font-size: 13px;
        white-space: nowrap;
    }

    /* Diamond Detector - Compact Horizontal Card */
    .diamond-detector-card {
        padding: 20px 24px;
        margin-bottom: 24px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        gap: 24px;
        flex-wrap: wrap;
    }

    .diamond-detector-card > div:first-child {
        display: flex;
        align-items: center;
        gap: 16px;
        flex: 1;
        min-width: 300px;
    }

    .diamond-detector-card h3 {
        font-size: 15px !important;
        margin: 0 !important;
        white-space: nowrap;
    }

    .diamond-detector-card p {
        font-size: 12px !important;
        margin: 4px 0 0 0 !important;
        color: rgba(255, 255, 255, 0.6);
        max-width: 400px;
    }

    /* Diamond Multi-Exchange - Inline */
    #diamond-multi-exchange-container {
        margin-top: 0 !important;
        padding-top: 0 !important;
        padding-left: 24px;
        border-top: none !important;
        border-left: 1px solid rgba(156, 39, 176, 0.2);
        flex: 1;
        min-width: 400px;
    }

    #diamond-multi-exchange-container h4 {
        font-size: 13px !important;
        margin-bottom: 8px !important;
    }

    #diamond-multi-exchange-container > p {
        display: none;
    }

    #diamond-exchange-checkboxes {
        display: flex !important;
        flex-wrap: wrap;
        gap: 8px !important;
    }

    #diamond-exchange-checkboxes label {
        padding: 6px 12px !important;
        font-size: 12px !important;
        border-radius: 6px !important;
    }

    /* Opportunities List - 2 Column Grid */
    .opportunities-list {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Full-width items */
    .opportunities-list > div:not(.opportunity-card):not(.card) {
        grid-column: 1 / -1;
    }

    #load-more-indicator,
    .opportunities-list > div[style*="text-align: center"] {
        grid-column: 1 / -1;
    }

    /* Opportunity Card - Desktop */
    .opportunity-card {
        margin-bottom: 0 !important;
        padding: 20px;
        border-radius: 14px;
        min-height: auto;
        display: flex;
        flex-direction: column;
    }

    .opportunity-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
    }

    /* Card Summary */
    .card-summary {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 6px !important;
    }

    .card-summary > div {
        font-size: 13px !important;
    }

    /* Card Details */
    .card-details {
        margin-top: 16px !important;
        padding-top: 16px !important;
    }

    /* Buttons */
    .btn-toggle-details,
    .btn-toggle-details-locked {
        padding: 10px !important;
        font-size: 13px !important;
        border-radius: 8px !important;
    }

    .btn-watch-toggle-card {
        padding: 6px 12px !important;
        font-size: 11px !important;
    }

    .btn-ai-probability {
        padding: 6px 10px !important;
    }

    /* Market Commentary Widget */
    #market-commentary-widget {
        margin-bottom: 20px;
    }

    #market-commentary-widget .card {
        padding: 16px 20px;
        border-radius: 12px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   DESKTOP RESPONSIVE - 1440px+ (3 Column Grid)
   ═══════════════════════════════════════════════════════════════ */

@media (min-width: 1440px) {
    .scalp-container {
        padding: 0 60px 100px 60px;
    }

    /* New Header - 1440px */
    .scalp-page-header {
        padding: 32px 40px;
        border-radius: 24px;
    }

    .scalp-header-info h1 {
        font-size: 32px;
    }

    .scalp-header-info p {
        font-size: 15px;
    }

    .trade-type-tab {
        padding: 14px 32px;
        font-size: 15px;
    }

    .scalp-header-actions .mode-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    /* Legacy Header */
    .scalp-container .page-header {
        padding: 28px 36px;
    }

    .scalp-container .page-header h2 {
        font-size: 28px;
    }

    /* Mode Selector */
    .mode-btn {
        padding: 12px 28px;
        font-size: 14px;
        min-width: 160px;
    }

    /* Opportunities List - 3 Column Grid */
    .opportunities-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    /* Opportunity Card */
    .opportunity-card {
        padding: 22px;
    }

    .card-summary > div {
        font-size: 14px !important;
    }

    /* Diamond Detector */
    .diamond-detector-card {
        padding: 24px 28px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   DESKTOP RESPONSIVE - 1920px+ (4 Column Grid)
   ═══════════════════════════════════════════════════════════════ */

@media (min-width: 1920px) {
    .scalp-container {
        padding: 0 80px 120px 80px;
        max-width: 1920px;
        margin: 0 auto;
    }

    /* New Header - 1920px */
    .scalp-page-header {
        padding: 36px 48px;
        border-radius: 28px;
    }

    .scalp-header-info h1 {
        font-size: 36px;
    }

    .scalp-header-info p {
        font-size: 16px;
    }

    .scalp-exchange-badge {
        padding: 10px 20px;
        font-size: 15px;
    }

    .scalp-type-badge {
        padding: 8px 16px;
        font-size: 13px;
    }

    .trade-type-tab {
        padding: 16px 36px;
        font-size: 16px;
    }

    .scalp-header-actions .mode-btn {
        padding: 14px 28px;
        font-size: 15px;
    }

    /* Legacy Header */
    .scalp-container .page-header {
        padding: 32px 40px;
    }

    .scalp-container .page-header h2 {
        font-size: 32px;
    }

    /* Opportunities List - 4 Column Grid */
    .opportunities-list {
        grid-template-columns: repeat(4, 1fr);
        gap: 28px;
    }

    /* Opportunity Card */
    .opportunity-card {
        padding: 24px;
        border-radius: 16px;
    }

    /* Mode Selector */
    .mode-btn {
        padding: 14px 32px;
        font-size: 15px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   MANUAL ANALYSIS MODE - DESKTOP
   ═══════════════════════════════════════════════════════════════ */

@media (min-width: 1024px) {
    #manual-mode-container {
        max-width: 100%;
    }

    /* Manual Analysis Grid Layout */
    .manual-analysis-container {
        display: grid;
        grid-template-columns: 350px 1fr;
        gap: 24px;
        align-items: start;
    }

    .manual-analysis-sidebar {
        position: sticky;
        top: 90px;
        background: linear-gradient(145deg, rgba(26, 31, 53, 0.95) 0%, rgba(18, 22, 38, 0.98) 100%);
        border-radius: 14px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        padding: 20px;
    }

    .manual-analysis-results {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* Symbol Input */
    #manual-symbol-input {
        font-size: 15px;
        padding: 12px 14px;
    }

    /* Analysis Mode Buttons */
    .analysis-mode-btns {
        display: flex;
        gap: 10px;
    }

    .analysis-mode-btns button {
        flex: 1;
        padding: 10px 14px;
        font-size: 12px;
    }
}

@media (min-width: 1440px) {
    .manual-analysis-container {
        grid-template-columns: 400px 1fr;
        gap: 32px;
    }

    .manual-analysis-results {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1920px) {
    .manual-analysis-container {
        grid-template-columns: 450px 1fr;
        gap: 40px;
    }

    .manual-analysis-results {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   LOCKED CARD STYLES
   ═══════════════════════════════════════════════════════════════ */

.locked-card {
    opacity: 0.9;
}

@media (min-width: 1024px) {
    .locked-card:hover {
        transform: translateY(-2px);
        opacity: 1;
    }
}

/* ═══════════════════════════════════════════════════════════════
   WATCHLIST & AI PROBABILITY POPUPS - DESKTOP
   ═══════════════════════════════════════════════════════════════ */

@media (min-width: 1024px) {
    .watchlist-popup-content {
        max-width: 700px;
        border-radius: 16px;
    }

    .watchlist-items-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .ai-probability-popup {
        max-width: 550px;
        border-radius: 16px;
        padding: 28px;
    }

    .ai-probability-result {
        padding: 20px;
    }
}

@media (min-width: 1440px) {
    .watchlist-popup-content {
        max-width: 900px;
    }

    .watchlist-items-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   CARD CONTENT STYLES
   ═══════════════════════════════════════════════════════════════ */

/* Symbol and Direction */
.opportunity-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Timeframe Badge */
.opportunity-card .tf-badge {
    padding: 2px 8px;
    background: rgba(255, 107, 53, 0.2);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    color: #FF6B35;
}

/* AI Score Colors */
.ai-score-high { color: #4CAF50 !important; }
.ai-score-medium { color: #FFC107 !important; }
.ai-score-low { color: #f44336 !important; }

/* Direction Colors */
.direction-buy { color: #4CAF50; }
.direction-sell { color: #f44336; }

/* Status Badges */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
}

.status-badge.confirmed {
    background: rgba(76, 175, 80, 0.15);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.status-badge.waiting {
    background: rgba(255, 193, 7, 0.15);
    color: #FFC107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.status-badge.avoid {
    background: rgba(244, 67, 54, 0.15);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

/* ═══════════════════════════════════════════════════════════════
   TRANSITIONS
   ═══════════════════════════════════════════════════════════════ */

.opportunity-card,
.mode-btn,
.action-btn,
.btn-toggle-details,
.btn-watch-toggle-card,
.diamond-detector-card {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══════════════════════════════════════════════════════════════
   SCROLLBAR STYLING (Desktop)
   ═══════════════════════════════════════════════════════════════ */

@media (min-width: 1024px) {
    .opportunities-list::-webkit-scrollbar {
        width: 6px;
    }

    .opportunities-list::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.03);
        border-radius: 3px;
    }

    .opportunities-list::-webkit-scrollbar-thumb {
        background: rgba(255, 107, 53, 0.25);
        border-radius: 3px;
    }

    .opportunities-list::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 107, 53, 0.4);
    }
}
