/* Prevent scrollbar for cleaner look */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.custom-scrollbar::-webkit-scrollbar {
    width: 4px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.2);
    border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.5);
}


/* Custom Scrollbar for a Premium Look */
.custom-scrollbar::-webkit-scrollbar {
    width: 4px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.2);
    border-radius: 10px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #D4AF37;
}

/* Tab Logic - Clean States */
.d-tab {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* The Active State */
.d-tab.is-active {
    background-color: #D4AF37 !important;
    color: #000 !important;
    box-shadow: 0 10px 25px -5px rgba(212, 175, 55, 0.3);
}

.d-tab.is-active .icon-box {
    background-color: rgba(0, 0, 0, 0.1) !important;
}

.d-tab.is-active .icon-svg {
    color: #000 !important;
}

/* Pane Transitions */
.tab-pane {
    animation: fadeIn 0.4s ease-out;
}

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