body {
    background-size: cover;
    position: relative;
}

.sidebar {
    background: #f1f5f8;
    min-height: 100vh;
    padding-top: 20px;
    transition: all 0.3s ease;
    z-index: 1000;
}

.sidebar .nav-link {
    color: white;
    margin: 12px 0;
    transition: all 0.5s ease;
    /* background: url('assets/img/chin.png') no-repeat center center fixed; */

}

.sidebar .nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.topbar {
    background: #1aa19f;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
}

.card {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.dropdown-menu {
    animation: fadeIn 0.3s ease;
    z-index: 1050;
}

.nav-item {
    opacity: 0;
    animation: slideIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.logo-container {
    padding: 20px;
    text-align: center;
}

.logo-container img {
    width: 120px;
    height: 120px;
    border-radius: 60px;
    margin-bottom: 15px;
}

#btnScrollTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    border-radius: 60px;

    display: none;
    z-index: 1000;
}

@media (max-width: 992px) {
    .sidebar {
        display: none;
    }
}

/* Asegúrate de que la paginación se vea bien en pantallas pequeñas */
@media (max-width: 576px) {
    .pagination-sm .page-link {
        padding: 0.25rem 0.5rem;
        font-size: 0.875rem;
    }
}