@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
body {
    font-family: 'Poppins', sans-serif;
}

h1 {
    font-weight: 800;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

.main {
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    background-color: #f9f9f9;
}

#sidebar {
    max-width: 264px;
    min-width: 264px;
    transition: all 0.35s ease-in-out;
    background-color: #FFF;
    display: flex;
    flex-direction: column;
}

#sidebar.collapsed {
    margin-left: -264px;
}

.toggler-btn {
    background-color: transparent;
    cursor: pointer;
    border: 2px solid #fff;
    border-radius: 20%;
}

.toggler-btn i {
    font-size: 1.5rem;
    color: #FFFF;
    font-weight: 1000;
}

.navbar {
    padding: 1.15rem 1.5rem;
    background-color: #56ac56;
    height: 65px;
}

.sidebar-nav {
    flex: 1 1 auto;
}

.sidebar-logo {
    padding: 1.15rem 1.5rem;
    text-align: center;
}

.sidebar-logo a {
    color: green;
    font-size: 1rem;
    font-weight: bold;
}

a.sidebar-link {
    padding-left: 1.625rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    color: #000;
    position: relative;
    transition: all 0.35s;
    display: block;
    font-size: 1.2rem;
}

.sidebar-link[data-bs-toggle="collapse"]::after {
    border: solid;
    border-width: 0 .075rem .075rem 0;
    content: "";
    display: inline-block;
    padding: 2px;
    position: absolute;
    right: 1.5rem;
    top: 1.4rem;
    transform: rotate(-135deg);
    transition: all .2s ease-out;
}

.sidebar-link[data-bs-toggle="collapse"].collapsed::after {
    transform: rotate(45deg);
    transition: all .2s ease-out;
}

.breadcrumb-item a {
    color: grey;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: black;
}

.container-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gradient-box {
    border-radius: 10px;
    text-align: center;
    padding: 20px;
    color: white;
    box-shadow: 0 4px 6px rgba(2, 107, 2, 0.7);
}

.gradient-box h5 {
    color: black;
    margin-bottom: 10px;
}

.gradient-box h2 {
    background: linear-gradient(to right, white, #065d06, white);
    font-size: 2.5rem;
    font-weight: bold;
}

@media (max-width: 576px) {
    .container-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 768px) {
    .sidebar-toggle {
        margin-left: -264px;
    }
    #sidebar.collapsed {
        margin-left: 0;
    }
    .col-custom {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .separator {
        display: none;
    }
}

canvas {
    max-width: 100%;
    max-height: 100%;
}

.nav-item {
    display: flex;
    align-items: center;
}

.separator {
    height: 1px;
    background-color: grey;
    width: 69%;
    margin: 20px 10px;
}