/* sidebar */
.sidebar-transition {
    transition: all 0.3s ease;
}
.content-transition {
    transition: margin-left 0.3s ease;
}
@media (max-width: 768px) {
    .sidebar-collapsed {
        transform: translateX(-100%);
    }
}

/* Custom shadow dengan opacity */
.sidebar-shadow {
    box-shadow: 
        0 12px 25px -3px rgba(0, 0, 0, 0.25), 
        0 8px 12px -2px rgba(0, 0, 0, 0.15);
}

/* Style untuk sidebar collapsed */
.sidebar-collapsed-md {
    width: 80px !important;
}

.sidebar-collapsed-md .sidebar-item-text {
    display: none;
}

.sidebar-collapsed-md .sidebar-badge {
    display: none;
}

.sidebar-collapsed-md .sidebar-footer-info,
.sidebar-collapsed-md .sidebar-header-text {
    display: none;
}

.sidebar-collapsed-md .sidebar-divider {
    margin: 0.5rem 0;
}

/* Caret trigger style */
.caret-trigger {
    position: absolute;
    top: 10%;
    right: -12px;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 10;
    transition: all 0.3s ease;
}

.caret-trigger:hover {
    background: #f3f4f6;
}

/* navbar */
.navbar-transition {
    transition: all 0.3s ease;
}

/* Animasi untuk menu mobile */
.mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.mobile-menu.open {
    max-height: 500px;
}

/* Efek hover pada menu */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #3b82f6;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}