/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

/* *{
    user-select: none;
} */


.top-navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 80px;
    background-color: rgb(67, 67, 67);
    color: white;
}

.sidebar {
    width: 210px;
    background: linear-gradient(to bottom, #92bef8, #158bfa);
    min-height: calc(100vh - 80px);
    margin-top: 80px;
    transition: width 0.3s ease;
}

.sidebar.collapsed {
    width: 80px;
    padding: 5px;
}

.sidebar .nav-link {
    font-size: 20px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    transition: all 0.3s ease;
    font-weight: bold;
    color: white;
}

.sidebar .nav-link:hover {
    background-color: rgb(70, 119, 255);
    color: white;
    border-radius: 5px;
}

.sidebar.collapsed .nav-link span {
    display: none;
}

.sidebar .nav-link i {
    font-size: 15px;
    margin-right: 5px;
}


.main-content {
    margin-top: 80px;
    flex-grow: 1;
    background-color: #f9f9f9;
    min-height: calc(100vh - 80px);
}

#arrow-btn {
    font-size: 30px;
    color: white;
    font-weight: bold;
}

/* Gradient background for Off (red) */
.bg-gradient-danger {
     background-color: #f73b45;
    color: black;
}

/* Default background */
.bg-light {
    background-color: #f8f9fa;
}

.status-circle {
    display: inline-block;
    width: 60px;               
    height: 24px;              
    border-radius: 5px;       
    margin-right: 6px;
    vertical-align: middle;
    color: white;           
    text-align: center;
    line-height: 24px;         
    font-size: 12px;           
    font-weight: bold;         
}
.bg-custom-success {
    background-color: #3bf75e;
}

.bg-custom-secondary {
    background-color: rgb(186, 187, 186);
}

