body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0a;
    color: #e5e5e5;
}
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    background-color: #0f172a;
}

::-webkit-scrollbar-track {
    background-color: #0f172a !important;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #008000 0%, #1e293b 100%);
    border-radius: 20px;
    border: 2px solid #0f172a;
    background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #3b82f6 0%, #008000 100%);
    background-clip: content-box;
}

.box-tshirt {
    height: 60px;
    position: relative;
    font-size: 11px;
    width: auto;
    text-align: center;
}
.tshirt {
    display: block;
    height: 50%;
    margin: 5% auto;
}
.animate-ping  {
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.glass-card {
    background: rgba(23, 23, 23, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.date-scroll {
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: #292929 transparent;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
    /* Chrome, Edge, Safari */
    .date-scroll::-webkit-scrollbar {
        height: 6px;
    }

    .date-scroll::-webkit-scrollbar-track {
        background: transparent;
    }

    .date-scroll::-webkit-scrollbar-thumb {
        background-color: rgba(41, 41, 41, 0.6);
        border-radius: 9999px;
    }

        .date-scroll::-webkit-scrollbar-thumb:hover {
            background-color: rgba(41, 41, 41, 0.9);
        }

.tab-content-container {
    position: relative;
}

.tab-content {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 300ms ease, transform 300ms ease;
    pointer-events: none;
}

    .tab-content.is-active {
        position: relative;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

@keyframes ping {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    75% {
        transform: scale(2);
        opacity: 0;
    }
}