/* Custom scrollbar for webkit */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background-color: #374151;
    border-radius: 10px;
}

/* View Transition Logic */
.view {
    opacity: 0;
    pointer-events: none;
    transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.view.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    z-index: 5;
}

.view.hidden {
    display: flex !important; /* Keep flex context for absolute positioning */
    z-index: 0;
    visibility: hidden;
}

/* Button click effects */
button:active {
    transform: scale(0.98);
}
