/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    background: linear-gradient(135deg, #0f1419 0%, #1a1f2e 100%);
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo i {
    font-size: 2.5rem;
    color: #00d4aa;
    text-shadow: 0 0 20px rgba(0, 212, 170, 0.5);
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, #00d4aa, #00a8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.signature {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-size: 1.1rem;
}

.header-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-label {
    font-size: 0.85rem;
    color: #8892b0;
    margin-bottom: 5px;
}

.stat-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #00d4aa;
}

.fear-greed {
    padding: 5px 12px;
    border-radius: 20px;
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    color: #000;
    font-weight: 700;
}

/* Main Content */
.main-content {
    padding: 40px 0;
    min-height: calc(100vh - 200px);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #00d4aa, #00a8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    color: #8892b0;
    font-size: 1.1rem;
}

/* Coin Selection Section */
.coin-selection-section {
    margin-bottom: 50px;
}

.selection-controls {
    display: flex;
    gap: 20px;
    align-items: end;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.coin-search {
    flex: 1;
    min-width: 300px;
}

.search-input-wrapper {
    position: relative;
}

.search-input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #8892b0;
    z-index: 2;
}

#coin-search {
    width: 100%;
    padding: 15px 15px 15px 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

#coin-search:focus {
    outline: none;
    border-color: #00d4aa;
    box-shadow: 0 0 20px rgba(0, 212, 170, 0.3);
}

#coin-search::placeholder {
    color: #8892b0;
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15, 20, 25, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.search-result-item {
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.search-result-item:hover {
    background: rgba(0, 212, 170, 0.1);
}

.search-result-item img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.search-result-info {
    flex: 1;
}

.search-result-name {
    font-weight: 600;
    color: #ffffff;
}

.search-result-symbol {
    color: #8892b0;
    font-size: 0.9rem;
}

.timeframe-selector {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.timeframe-selector label {
    color: #8892b0;
    font-size: 0.9rem;
    font-weight: 600;
}

#timeframe-select {
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

#timeframe-select:focus {
    outline: none;
    border-color: #00d4aa;
    box-shadow: 0 0 20px rgba(0, 212, 170, 0.3);
}

.analyze-btn {
    padding: 15px 30px;
    background: linear-gradient(45deg, #00d4aa, #00a8ff);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.analyze-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.4);
}

.analyze-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Popular Coins */
.popular-coins {
    margin-top: 30px;
}

.popular-coins h3 {
    color: #8892b0;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.coin-chips {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.coin-chip {
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
}

.coin-chip:hover {
    border-color: #00d4aa;
    background: rgba(0, 212, 170, 0.1);
    transform: translateY(-2px);
}

.coin-chip img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

/* Analysis Section */
.analysis-section {
    margin-bottom: 50px;
}

.last-updated {
    color: #8892b0;
    font-size: 0.9rem;
    margin-top: 10px;
}

/* Coin Info Card */
.coin-info-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.coin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 20px;
}

.coin-basic-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

#coin-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.coin-details h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
}

#coin-symbol {
    color: #8892b0;
    font-size: 1.1rem;
    margin-left: 10px;
}

.coin-rank {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    color: #000;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-left: 15px;
}

.coin-price-info {
    text-align: left;
}

.current-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.price-label {
    color: #8892b0;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #00d4aa;
}

.price-change {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.change-24h, .change-7d {
    padding: 5px 12px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.9rem;
}

.change-24h.positive, .change-7d.positive {
    background: rgba(0, 212, 170, 0.2);
    color: #00d4aa;
}

.change-24h.negative, .change-7d.negative {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.stat-grid .stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-grid .stat-label {
    color: #8892b0;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.stat-grid .stat-value {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Analysis Grid */
.analysis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

/* Analysis Cards */
.analysis-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.analysis-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 212, 170, 0.3);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-header i {
    color: #00d4aa;
}

/* Technical Analysis */
.analysis-score, .scalping-score {
    display: flex;
    align-items: baseline;
    gap: 5px;
    font-weight: 700;
}

.score-value {
    font-size: 1.8rem;
    color: #00d4aa;
}

.score-max {
    font-size: 1.2rem;
    color: #8892b0;
}

.analysis-factors {
    margin-bottom: 20px;
}

.factor-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.factor-label {
    min-width: 100px;
    color: #8892b0;
    font-size: 0.9rem;
}

.factor-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.factor-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff6b6b, #feca57, #00d4aa);
    border-radius: 4px;
    transition: width 0.8s ease;
}

.factor-value {
    min-width: 40px;
    text-align: left;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
}

.overall-trend {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: rgba(0, 212, 170, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 170, 0.3);
}

.overall-trend i {
    font-size: 1.2rem;
    color: #00d4aa;
}

.overall-trend.bearish {
    background: rgba(255, 107, 107, 0.1);
    border-color: rgba(255, 107, 107, 0.3);
}

.overall-trend.bearish i {
    color: #ff6b6b;
    transform: rotate(180deg);
}

/* Trading Recommendation */
.recommendation-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.recommendation-badge.buy {
    background: rgba(0, 212, 170, 0.2);
    color: #00d4aa;
    border: 1px solid rgba(0, 212, 170, 0.5);
}

.recommendation-badge.sell {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
    border: 1px solid rgba(255, 107, 107, 0.5);
}

.recommendation-badge.hold {
    background: rgba(254, 202, 87, 0.2);
    color: #feca57;
    border: 1px solid rgba(254, 202, 87, 0.5);
}

.confidence-level, .risk-level {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.confidence-label, .risk-label {
    color: #8892b0;
}

.confidence-value, .risk-value {
    font-weight: 600;
}

.confidence-value.high, .risk-value.low {
    color: #00d4aa;
}

.confidence-value.medium, .risk-value.medium {
    color: #feca57;
}

.confidence-value.low, .risk-value.high {
    color: #ff6b6b;
}

.recommendation-reasoning {
    margin: 20px 0;
}

.recommendation-reasoning h4 {
    color: #8892b0;
    margin-bottom: 10px;
    font-size: 1rem;
}

.recommendation-reasoning p {
    color: #ffffff;
    line-height: 1.6;
}

.success-probability {
    margin-top: 20px;
}

.probability-label {
    color: #8892b0;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

.probability-bar {
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 8px;
}

.probability-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff6b6b, #feca57, #00d4aa);
    border-radius: 6px;
    transition: width 0.8s ease;
}

.probability-value {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Entry Points */
.entry-levels {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.entry-level {
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.entry-level.aggressive {
    background: rgba(255, 107, 107, 0.1);
    border-color: rgba(255, 107, 107, 0.3);
}

.entry-level.moderate {
    background: rgba(254, 202, 87, 0.1);
    border-color: rgba(254, 202, 87, 0.3);
}

.entry-level.conservative {
    background: rgba(0, 212, 170, 0.1);
    border-color: rgba(0, 212, 170, 0.3);
}

.level-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.level-type {
    font-weight: 600;
    color: #ffffff;
}

.level-risk {
    font-size: 0.8rem;
    padding: 3px 8px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #8892b0;
}

.level-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}

.level-description {
    color: #8892b0;
    font-size: 0.9rem;
}

/* Targets */
.target-levels {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.target-level {
    padding: 15px;
    background: rgba(0, 212, 170, 0.05);
    border: 1px solid rgba(0, 212, 170, 0.2);
    border-radius: 12px;
}

.target-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.target-number {
    font-weight: 600;
    color: #ffffff;
}

.target-probability {
    font-size: 0.9rem;
    color: #00d4aa;
    font-weight: 600;
}

.target-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #00d4aa;
    margin-bottom: 5px;
}

.target-gain {
    color: #00d4aa;
    font-weight: 600;
    margin-bottom: 5px;
}

.target-timeframe {
    color: #8892b0;
    font-size: 0.9rem;
}

/* Stop Loss */
.stop-loss-info {
    text-align: center;
}

.stop-loss-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ff6b6b;
    margin-bottom: 8px;
}

.stop-loss-percentage {
    color: #ff6b6b;
    font-weight: 600;
    margin-bottom: 15px;
}

.stop-loss-reasoning {
    margin: 15px 0;
    padding: 15px;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 107, 0.2);
}

.stop-loss-reasoning p {
    color: #ffffff;
    font-size: 0.9rem;
}

.risk-reward-ratio {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.ratio-label {
    color: #8892b0;
}

.ratio-value {
    font-weight: 700;
    color: #00d4aa;
}

/* Scalping Analysis */
.scalping-suitability {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.suitability-label {
    color: #8892b0;
}

.suitability-value {
    font-weight: 600;
}

.suitability-value.yes {
    color: #00d4aa;
}

.suitability-value.no {
    color: #ff6b6b;
}

.scalping-timeframe {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.timeframe-label {
    color: #8892b0;
}

.timeframe-value {
    font-weight: 600;
    color: #ffffff;
}

.scalping-targets {
    margin-top: 15px;
}

.scalping-target {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    background: rgba(0, 212, 170, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(0, 212, 170, 0.2);
}

.target-label {
    color: #8892b0;
}

.target-value {
    font-weight: 600;
    color: #00d4aa;
}

/* Chart Section */
.chart-section {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 20px;
}

.chart-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.chart-header i {
    color: #00d4aa;
}

.chart-controls {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.chart-btn {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: #8892b0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.chart-btn:hover, .chart-btn.active {
    background: rgba(0, 212, 170, 0.2);
    border-color: rgba(0, 212, 170, 0.5);
    color: #00d4aa;
}

.chart-container {
    height: 400px;
    position: relative;
}

/* Loading Section */
.loading-section {
    text-align: center;
    padding: 60px 20px;
}

.loading-spinner {
    display: inline-block;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid #00d4aa;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

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

.loading-section p {
    font-size: 1.2rem;
    color: #8892b0;
    margin-bottom: 30px;
}

.loading-steps {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.step {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: #8892b0;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.step.active {
    background: rgba(0, 212, 170, 0.2);
    border-color: rgba(0, 212, 170, 0.5);
    color: #00d4aa;
}

/* Footer */
.footer {
    background: rgba(15, 20, 25, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    margin-top: 50px;
}

.footer-content {
    text-align: center;
}

.footer-info {
    margin-bottom: 15px;
}

.footer-info p {
    color: #8892b0;
    margin-bottom: 5px;
}

.footer-disclaimer {
    padding: 15px;
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.2);
    border-radius: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.footer-disclaimer p {
    color: #ff6b6b;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .logo {
        flex-direction: column;
        gap: 10px;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .header-stats {
        gap: 20px;
    }
    
    .selection-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .coin-search {
        min-width: auto;
    }
    
    .analyze-btn {
        justify-content: center;
    }
    
    .coin-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .coin-price-info {
        text-align: center;
        width: 100%;
    }
    
    .current-price {
        align-items: center;
    }
    
    .analysis-grid {
        grid-template-columns: 1fr;
    }
    
    .chart-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .chart-container {
        height: 300px;
    }
    
    .loading-steps {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .coin-chips {
        justify-content: center;
    }
    
    .coin-chip {
        font-size: 0.8rem;
        padding: 10px 15px;
    }
    
    .price-value {
        font-size: 1.6rem;
    }
    
    .analysis-card {
        padding: 20px;
    }
    
    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .entry-levels {
        gap: 10px;
    }
    
    .target-levels {
        gap: 15px;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-up {
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }

.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }

.hidden { display: none !important; }
.visible { display: block !important; }

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 212, 170, 0.5);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 212, 170, 0.7);
}

