@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

*,
::after,
::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #02011a;
    color: #fff;
}

h3 {
    font-size: 1.2375rem;
    color: #FFF;
}

a {
    cursor: pointer;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    color: white;
}

li {
    list-style: none;
}

/* Layout */
.wrapper {
    display: flex;
    width: 100%;
}

#sidebar {
    width: 264px;
    transition: all 0.35s ease-in-out;
    box-shadow: 0 0 35px 0 rgba(49, 57, 66, 0.5);
    z-index: 1111;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
}

#sidebar.collapsed {
    margin-left: -264px;
}

.main {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    transition: all 0.35s ease-in-out;
}

.sidebar-logo {
    padding: 1.15rem 1.5rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.sidebar-nav {
    padding: 0;
}

.sidebar-link {
    padding: 0.625rem 1.625rem;
    display: block;
    font-size: 1rem;
    color: white;
}

.sidebar-link[data-bs-toggle="collapse"]::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 1.5rem;
    top: 1.2rem;
    transition: all 0.3s ease;
}

.sidebar-link[data-bs-toggle="collapse"].collapsed::after {
    transform: rotate(180deg);
}

/* Estilos offcanvas */
.offcanvas-backdrop.show {
    opacity: 0 !important;
}

.offcanvas-start {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: white;
}

i {
    font-size: 20px !important;
    color: white !important;
}

/* Responsivo */
@media (min-width: 768px) {
    .content {
        width: auto;
    }
}
