@charset "UTF-8";

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #1f2937;
}

::-webkit-scrollbar-thumb {
    background: #4b5563;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6b7280;
}

.glass {
    background: rgba(31, 41, 55, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.line-blue {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.line-red {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.line-brown {
    background: linear-gradient(135deg, #a16207, #854d0e);
}

.line-orange {
    background: linear-gradient(135deg, #f97316, #ea580c);
}

.line-green {
    background: linear-gradient(135deg, #16a34a, #15803d);
}

.line-yellow {
    background: linear-gradient(135deg, #facc15, #eab308);
    color: black;
}

.line-purple {
    background: linear-gradient(135deg, #9333ea, #7e22ce);
}

@keyframes valueIncrease {
    0% {
        transform: scale(1);
        color: #fff;
    }

    50% {
        transform: scale(1.1);
        color: #4ade80;
    }

    /* green-400 */
    100% {
        transform: scale(1);
        color: #fff;
    }
}

@keyframes valueDecrease {
    0% {
        transform: scale(1);
        color: #fff;
    }

    50% {
        transform: scale(1.1);
        color: #f87171;
    }

    /* red-400 */
    100% {
        transform: scale(1);
        color: #fff;
    }
}

.value-increase {
    animation: valueIncrease 0.5s ease-out;
}

.value-decrease {
    animation: valueDecrease 0.5s ease-out;
}

.text-shadow {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}