.custom-tab-link {
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background-color: #f8f9fa;
    color: #6c757d;
}

.custom-tab-link:hover {
    background-color: #e9ecef;
    color: #495057;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.custom-tab-link.active {
    background-color: #0d6efd;
    color: white !important;
    border-color: #0d6efd;
    box-shadow: 0 4px 12px rgba(13,110,253,0.3);
}

.custom-tab-link.active:hover {
    background-color: white !important;
    color: #0d6efd !important;
    border-color: #0d6efd;
    box-shadow: 0 6px 16px rgba(13,110,253,0.4);
}

.custom-tab-link.active:hover .tab-icon {
    background-color: #0d6efd !important;
    color: white !important;
}

.tab-icon {
    transition: all 0.3s ease;
}

.custom-tab-link:hover .tab-icon {
    background-color: #6c757d;
}

.custom-tab-link.active .tab-icon {
    background-color: white;
    color: #0d6efd;
}
