.btn-custom{
    background-color: #1e6935;
    border: #1e6935;
    --bs-btn-active-bg: #a0eeb7;
    --bs-btn-active-border-color: #a0eeb7;
    --bs-btn-hover-color: #fff;
}
.btn-custom:hover{
     background-color: #31884b;
}
.btn-dark-green{
    background-color: #268b44;
    border: #29974a;
    --bs-btn-active-bg: #a0eeb7;
    --bs-btn-active-border-color: #a0eeb7;
    --bs-btn-hover-color: #fff;
}

.btn-dark-green:hover{
    background-color: #32ac56;
}
.btn-light-green{
    background-color: #29974a;
    border: #29974a;
    --bs-btn-active-bg: #a0eeb7;
    --bs-btn-active-border-color: #a0eeb7;
    --bs-btn-hover-color: #fff;
}
.btn-light-green:hover{
    background-color: #32ac56;
    
}

.btn-light-inventory{
    background-color: #dbdcdd; ;
    border: #dbdcdd; ;
    --bs-btn-active-bg: #c6c7c8;
    --bs-btn-active-border-color: #c6c7c8;
    --bs-btn-hover-color: #ffffff;
    color: black;
}
.btn-light-inventory:hover{
    background-color: #d3d4d5;   
}

.btn-light-inventory a{
    color: black;
}


.btn-product-light-green{
    background-color: #6fcf8c;
    border: #29974a;
    --bs-btn-active-bg: #a0eeb7;
    --bs-btn-active-border-color: #a0eeb7;
    --bs-btn-hover-color: #fff;
}

.btn-product-light-green:hover{
    background-color: #32ac56;
}
.btn-edit{
    background-color: #f8c96c;
    border:  #f7c767;
    --bs-btn-active-bg: #f7cc77;
    --bs-btn-active-border-color: #f7cc77;
    --bs-btn-hover-color: #fff;
}
.btn-edit:hover{
    background-color: #e2bb6b;
}

.btn-custom:hover{
    background-color: #94d8a8;
}
.btn-apr{
    background-color: green;
    border: green;
    margin: 5px;
    color: white;
    --bs-btn-active-bg: rgb(7, 238, 7);
    --bs-btn-active-border-color: rgb(7, 238, 7);
}
.btn-apr:hover{
    background-color: rgb(3, 175, 3);
    color: white;
}
.btn-apr:active{
    background-color:rgb(7, 238, 7) ;
}
.btn-dec{
    background-color: red;
    border: red;
    margin: 5px;
    --bs-btn-active-bg: rgb(223, 4, 4);
    --bs-btn-active-border-color: rgb(223, 4, 4);
}
.btn-del{
    background-color: red;
    border: red;
    --bs-btn-active-bg: rgb(223, 4, 4);
    --bs-btn-active-border-color: rgb(223, 4, 4);
}
.btn-del:hover{
    background-color: rgb(201, 7, 7);
}
.btn-dec:hover{
    background-color: rgb(201, 7, 7);
}
.card-header-cstm{
    background-color: #94d8a8;
}
.card-header-cstm-2{
    background-color: #94d8a8;
}
.table-green{
    background-color: #94d8a8;
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

::after,
::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

h1 {
    font-weight: 600;
    font-size: 1.5rem;
}

body {
    background-color: #f8f8ee;
    font-family: 'Poppins', sans-serif;

}
.wrapper{
    display: flex;
}
.main{
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    overflow-x:auto;
    transition: all 0.35s ease-in-out;
    background-color: #f8f8ee;
}
#sidebar{
    width: 70px;
    min-width: 70px;
    z-index: 1000;
    transition: all .25s ease-in-out;
    display: flex;
    flex-direction: column;
    background-color: #8bd4be;
}

#sidebar.expand{
    width: 260px;
    min-width: 260px;

}
#toggle-btn{
    background-color: transparent;
    cursor: pointer;
    border: 0;
    padding: 1rem 1.5rem;
}

#toggle-btn i{
    font-size: 1.5rem;
    color: black;
}
.sidebar-logo{
    margin-top: 30px;
    margin: auto;
}
.sidebar-logo a{
    color: black;
    font-size: 1.15rem;
    font-weight: 600;
}
#sidebar:not(.expand) .sidebar-logo,
#sidebar:not(.expand) .logo-title,
#sidebar:not(.expand) .sidebar-title {
    display: none;
}
.sidebar-nav{
    padding: 2rem 0;
    flex: 1 1 auto;
}
a.sidebar-link{
    padding: .625rem 1.625rem;
    color: black;
    display: block;
    font-size: 0.9rem;
    white-space: nowrap;
    border-left: 3px solid transparent;
}
.sidebar-link:hover{
    background-color: #c6faeb;
}
.search-bar{
    width: 70%;
}
.btn-add{
    margin-right: 60px;
}

.table-flex{
    display: flex;
}
.brand-title{
    letter-spacing: 5px;
    text-transform: uppercase;
}
.profile-details{
    background-color: white;
    height: 100vh;
    box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 15%);
}
.user-details{
    background-color: #f7f3e8;
}
.card{
    box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 15%);
}
.table{
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 15%);
}
.fa-eye{
    cursor: pointer;
}
.dashboard-header{
    font-size: 50px;
}
.dropdown-category{
    width: 25%;
}