body, html {
    height: 100%;
    margin: 0;
}

.brand {
    font-size: 30px;
    font-weight: bold;
    color:#017737;
}

/*** COMMON ***/

.input-group-text{
    background-color: var(--bs-green) !important;
}
.icon-button{
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3px 7px;
    border-radius: 3px;
}
.icon-button img {
    width: 14px;
    margin-right: 7px;
}
.id-msg-alert{
    position: absolute;
    top: 50px;
    right:20px;
    max-width: 500px;
    z-index: 1000;
}
.alertIcon{
    position: absolute;
    top: -10px;
    right:-10px;
    width: 30px;
    background-color: black;
    padding: 5px 7px;
    border-radius: 50%;
}

/*** LOGIN FORM ***/
.loginWrap{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}
.formBox{
    /* max-width: 700px; */
    width: 500px;
    border: 1px solid #eee;
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
}

/***** ADMIN ******/
.admin-container{
    display: flex;
    height: 100%;
}
.admin-main{
    flex: 1;
    background-color: #fff; /* Replace with your desired background color */
    overflow: auto;
}
.admin-main-content{
    padding: 20px;
}

.admin-header{
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    font-size: 18px;
}
.admin-user{
    background-color: #ddd;
    padding: 5px 14px;
    border-radius: 50%;
    cursor: pointer;
}

/****** ADMIN - TABLE *****/
.table tr:hover td{
    background-color: #f7f9f9 !important;
}
.td-actions {
    width: 80px;
    text-align: center;
}

.td-actions img{
    cursor: pointer;
}

/***** ADMIN - PAGINATION ***/
.pagination {
    margin-top: 10px;
    justify-content: end;
}
.pagination li{
    padding: 5px 10px;
    background-color: #fff;
    border: 1px solid #ddd;
}
.pagination li.active {
    background-color: #198754;
    border-color:#017737;    
}
.pagination li.active a{
    color: #fff;
    font-weight: bold;
}
.pagination li a{
    text-decoration: none;
    color: #017737;
}

/**** ADMIN - Customer ***/
.customer-group{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.customer-group .search-bar{
    max-width: 500px;
    margin-left: 10px;
}

/*** ADMIN - SIDEBAR ***/

.sidebar {
    flex: 0 0 auto;
    background-color: #198754; /* Replace with your desired background color */
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.admin-icon{
    width: 26px;
    height: 26px;
    border-color: #fff;
    fill: #fff;
    margin-top: 24px;
}