::-webkit-scrollbar {
    animation: slideTab 0.4s ease-in-out;
    transition: all 0.3s ease-out;
    width: 12px; /* Width of the scrollbar */
}

::-webkit-scrollbar-track {
    animation: slideTab 0.4s ease-in-out;
    margin-top: 140px;
    margin-bottom: 80px;
    transition: all 0.3s ease-out;
    background: #f7fafc; /* Background of the track */
    border-radius: 10px; /* Rounded corners */
}

::-webkit-scrollbar-thumb {
    transition: all 0.3s ease-out;
    background-color: #cecece; 
    border-radius: 10px; 
    border: 3px solid #f7fafc; 
}

::-webkit-scrollbar-thumb:hover {
    transition: all 0.3s ease-out;
    background-color: #929292;
}

/* Custom Scrollbar for Firefox */
html {
    transition: all 0.3s ease-out;
    scrollbar-width: thin; /* Make scrollbar thinner */
    scrollbar-color: #7d7d7d #f7fafc; /* Thumb and track color */
}

body {
    scrollbar-width: thin; /* Make scrollbar thinner */
    scrollbar-color: #6c6c6c #f7fafc; /* Thumb and track color */
}

/* Applies to the entire body for a consistent look */
body::-webkit-scrollbar {
    width: 12px; /* Width of the scrollbar */
}

body::-webkit-scrollbar-track {
    background: #f7fafc; /* Background of the track */
    border-radius: 10px; /* Rounded corners */
}

body::-webkit-scrollbar-thumb {
    background-color: #505050; /* Color of the scrollbar thumb */
    border-radius: 10px; /* Rounded corners */
    border: 3px solid #f7fafc; /* Adds padding around the thumb */
}

body::-webkit-scrollbar-thumb:hover {
    background-color: #494949; /* Color on hover */
}

.dark {

    ::-webkit-scrollbar {
        transition: all 0.3s ease-out;
        width: 12px; /* Width of the scrollbar */
    }

    ::-webkit-scrollbar-track {
        animation: slideTab 0.4s ease-in-out;
        margin-top: 140px;
        margin-bottom: 80px;
        transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
        background: #232323; /* Background of the track */
        border-radius: 10px; /* Rounded corners */
    }

    ::-webkit-scrollbar-thumb {
        transition: all 0.3s ease-out;
        background-color: #5b5b5b; /* Color of the scrollbar thumb */
        border-radius: 10px; /* Rounded corners */
        border: 3px solid #2d2d2d; /* Adds padding around the thumb */
    }

    ::-webkit-scrollbar-thumb:hover {
        transition: all 0.3s ease-out;
        background-color: #929292; /* Color on hover */
    }

    /* Custom Scrollbar for Firefox */
    html {
        transition: all 0.3s ease-out;
        scrollbar-width: thin; /* Make scrollbar thinner */
        scrollbar-color: #7d7d7d #181818; /* Thumb and track color */
    }

    body {
        scrollbar-width: thin; /* Make scrollbar thinner */
        scrollbar-color: #6c6c6c #f7fafc; /* Thumb and track color */
    }

    /* Applies to the entire body for a consistent look */
    body::-webkit-scrollbar {
        width: 12px; /* Width of the scrollbar */
    }

    body::-webkit-scrollbar-track {
        background: #f7fafc; /* Background of the track */
        border-radius: 10px; /* Rounded corners */
    }

    body::-webkit-scrollbar-thumb {
        background-color: #505050; /* Color of the scrollbar thumb */
        border-radius: 10px; /* Rounded corners */
        border: 3px solid #f7fafc; /* Adds padding around the thumb */
    }

    body::-webkit-scrollbar-thumb:hover {
        background-color: #494949; /* Color on hover */
    }
}

[aria-roledescription="carousel"] {
    perspective: 1000px;
    overflow: hidden;
}
[aria-roledescription="carousel"] .flex {
    transform-style: preserve-3d;
    position: relative;
}
[aria-roledescription="slide"] {
    transition: all 0.7s cubic-bezier(0.4, 0.0, 0.2, 1);
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
}
.container {
    position: relative;
}

[aria-roledescription="carousel"] button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}
[aria-roledescription="carousel"] button:hover {
    background-color: rgba(255, 255, 255, 0.9);
}
[aria-roledescription="carousel"] button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
[aria-roledescription="carousel"] button:first-of-type {
    left: 10px;
}
[aria-roledescription="carousel"] button:last-of-type {
    right: 10px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.animate-fade-right {
    opacity: 0;
    animation: fadeInRight 0.8s ease forwards;
}

.delay-200 { animation-delay: 0.2s; }
.delay-400 { animation-delay: 0.4s; }
.delay-600 { animation-delay: 0.6s; }
.delay-800 { animation-delay: 0.8s; }

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

.gradient-text {
    background: linear-gradient(45deg, #ffffff, #a0a0a0, #ffffff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradient 5s ease infinite;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 100;
        transform: translateX(0);
    }
}


.button-animate {
    animation: slideInRight 0.5s ease-out;
}

.logo-spin {
    transition: transform 0.6s ease-out;
}

.logo-spin:hover {
    transform: rotate(360deg);
}

button{
    transition: all 0.4 ease-in;
}

[data-id="32312"]{
    header{
        transition: all 0.4s ease-in;
    }
}

[data-id="433"]{
    transition: all 0.4s ease-in;
}
.popover {
    position: relative;

    .popover-content {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: white;
        padding: 16px;
        width: 300px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .popover-content.show {
        display: block;
    }
    
    button {
        background-color: white;
        padding: 8px;
        cursor: pointer;
    }
    
    h4 {
        margin: 0 0 8px 0;
    }
    
    p {
        margin: 0 0 16px 0;
        font-size: 14px;
        color: #666;
    }
    
    .grid {
        display: grid;
        gap: 16px;
    }
    
    .grid-cols-3 {
        grid-template-columns: 1fr 2fr;
        align-items: center;
        gap: 16px;
    }
    
    label {
        font-weight: bold;
    }
    
    select {
        width: 100%;
        padding: 4px;
        border: 1px solid #ccc;
        border-radius: 4px;
    }
}

.image-container {
    position: relative;
    overflow: hidden;
}
.image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}
.image-container img {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
.image-container img.loaded {
    opacity: 100;
}

.image-container[image="async-loaded"]::before {
    display: none;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}