*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Select2 drop-down */
.input-group .select2-container .select2-selection--single{
    min-height: 40px;
    height: auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-flow: row-reverse;
}

.input-group .select2-container .select2-selection--single .select2-selection__rendered{
    width: fit-content;
    background-color: #f2f2f2;
    border-radius: 5px;
    padding: 0 8px;
}

.input-group .select2-container .select2-selection--single .select2-selection__clear{
   margin-right: 0;
   background-color: #f2f2f2;
   padding-right: 8px;
}

.input-group .select2-container--default .select2-selection--single .select2-selection__arrow{
    top: 8px;
}

.nav-link i::before{
    color: #fff;
}

.nav-link a::before{
    color: #fff;
}

.card-group .card{
    border: 0;
    box-shadow: 0px 8px 26px rgba(0, 0, 0, 0.08);
}

/* filter modal */
.modal.task-filter-modal .modal-dialog{
    position: fixed;
    margin: auto;
    width: 520px;
    height: 100%;
    -webkit-transform: translate3d(0%, 0, 0);
    -ms-transform: translate3d(0%, 0, 0);
    -o-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0);
}

.modal.task-filter-modal .modal-content{
    height: 100%;
	overflow-y: auto;
}

.modal.task-filter-modal .modal-body{
    padding: 15px 15px 80px;
}

.modal.task-filter-modal.fade .modal-dialog {
    right: -520px;
    -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
    -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
    -o-transition: opacity 0.3s linear, right 0.3s ease-out;
    transition: opacity 0.3s linear, right 0.3s ease-out;
}

.modal.task-filter-modal.fade .modal-dialog {
    right: 0;
}

#standup-form label{
    font-size: 16px;
    font-weight: 500;
}

#pending-task{
    list-style: none;
    height: auto;
    max-height: 40vh;
    overflow: auto;
    border: 1px solid #f2f2f2;
    overflow-x: hidden;
}

#pending-task li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    gap: 15px;
    border-bottom: 1px solid #f2f2f2;
}

#standup-form #task-container{
    max-height: 50vh;
    overflow-y: auto;
    overflow-x: hidden;
}

.standup-emp-card .employee-cover{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.standup-emp-card .employee-cover .employee-initial{
    height: 60px;
    width: 60px;
    border-radius: 50%;
    background-color: cadetblue;
    font-size: 30px;
    line-height: 1.5;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    text-transform: uppercase;
}

.daily-standup-date-filter{
    width: fit-content;
}

.bmc-btn-container{
    position: relative;
    z-index: 9999;
}

.bmc-btn-container .bmc-btn{
    min-width: 159px;
    height: 43px;
    border-radius: 5px;
    font-size: 24px;
    padding: 0px 10px;
    position: absolute;
    right: 1rem;
    top: -3rem;
}