
@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');

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;
}
.nav-link{
    color:rgb(4, 1, 19) !important;
    background-color: #ebebf6;
}
.nav-link:hover{
    color:rgb(240, 107, 5) !important;
}
/* nav ul li a {
    text-decoration: none; 
    color: rgb(13, 121, 20); 
    font-weight: bold; 
    padding: 10px 15px; 
    transition: background-color 0.3s ease; 
} */

#sidebar {
    max-width: 264px;
    min-width: 264px;
    transition: all 0.35s ease-in-out;
    background-color: #2e2a42;
    display: flex;
    flex-direction: column;
}

#sidebar.collapsed {
    margin-left: -264px;
}

.toggler-btn {
    background-color: transparent;
    cursor: pointer;
    border: 0;
}

.toggler-btn i {
    font-size: 1.75rem;
    color: #000;
    font-weight: 1000;
}

.navbar {
    padding: 1.15rem 1.5rem;
    border-bottom: 3px solid #ddcaca;
}

.sidebar-nav {
    flex: 1 1 auto;
}

.sidebar-logo {
    padding: 1.15rem 1.5rem;
    text-align: center;
}

.sidebar-logo a {
    color: #FFF;
    font-weight: 800;
    font-size: 1.5rem;
}

.sidebar-header {
    color: #FFF;
    font-size: .75rem;
    padding: 1.5rem 1.5rem .375rem;
}

a.sidebar-link {
    padding: .625rem 1.625rem;
    color: #FFF;
    position: relative;
    transition: all 0.35s;
    display: block;
    font-size: 1.25rem;
}

a.sidebar-link:hover {
    background-color: #f9f6f630;
}

.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;
}
.coursesImages{
    background: #fbf9fb;
    color: rgb(34, 5, 113);
    text-transform: capitalize;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /* padding: 1px;  */
    font-size: 13px; /* Adjust font size */
    
}
.coursesImages:hover{
    background: #f0eff2;
    color: rgb(247, 115, 7);
    text-transform: capitalize;
    /* padding: 1px;  */
    font-size: 14px; /* Adjust font size */
    font-weight: bold;
}
.adminImgs{
    height: 10rem;
    border-radius: 10px;
}
.adminImgSm{
    height: 5rem;
    border-radius: 10px;
}
.adminImgs:hover{
    height: 10rem;
    border-radius: 10px;
    border: 2px solid rgb(33, 143, 228);
}
.hide{
    display: none;
}
.myDIV:hover + .hide{
    color: blue;
    visibility: visible;
    opacity: 1;
}

/* Screen size less than 768px */

@media (max-width:768px) {

    .sidebar-toggle {
        margin-left: -264px;
    }

    #sidebar.collapsed {
        margin-left: 0;
    }
}

.dropdown:hover>.dropdown-menu{
    display: block;
    background: rgb(199, 201, 204);

}
