.sidebar {
    position: fixed;
    top: 0;
    height: 100vh;
    background: #000;
    z-index: 1;
}

.sidebar-sticky {
    position: sticky;
    top: 56px;
    height: calc(100vh - 56px);
}

.main {
    height: calc(100vh - 56px);
    margin-left: auto;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 10;
}

.sidebar .nav-link {
    font-weight: 500;
    color: #333;
}

.sidebar .nav-link.active {
    color: var(--bs-primary);
}

.sidebar i {
    color: #999;
    font-size: 1.1rem;
    margin-right: 7px;
}

.sidebar a:hover i {
    color: #333;
}

p {
    word-wrap: break-word;
}

@media (max-width: 768px) {

    .nav-text,
    .header-text {
        display: none;
    }
}

.text-truncate-3 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card.h-100 {
    min-height: 200px;

}

.card-add {
    transition: all 0.2s ease-in-out;
}

.card-add:hover {
    background-color: #f8f9fa;
    border-color: #198754;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}