body{
    margin:0px;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

*{
    font-family: Inter;
}

.header{
    height: 40px;
    min-height: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding:5px 10px;
}

.header .logo{
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .logo img{
    width: 100px;
}

.header .syc{
    display: flex;
    flex-direction: row;
    gap:10px;
    padding:5px 20px;
    background-color: #e9e9e9;
    border-radius: 30px;
    align-items: center;
    width: fit-content;
    margin-left: auto;
}

button{
    border:0px;
    outline: 0px;
    padding:8px 15px;
    border-radius: 7px;
    border:2px solid #000;
    background-color: #000;
    color:#fff;
}

button:hover{
    box-shadow: 0px 0px 10px #000;
    cursor: pointer;
}

button.secondary{
    background-color: #fff;
    color:#000;
}

.header .syc button.disabled{
    opacity: 0.5;
    cursor: not-allowed;
}

.header .syc button.disabled:hover{
    cursor: not-allowed;
}

.projectComplete{
    background-color: #09ff05 !important;
}

.completed{
    background-color: #09ff05 !important;
}

.reviews_pending{
    background-color: #bfbfbf !important;
}

.move_on_completed{
    background-color: #bfbfbf !important;
}

.move_out_scheduled{
    background-color: #bfbfbf !important;
}

.delayed{
    background-color: #ff0000 !important;
}

.hh_dropdown{
    width: fit-content;
}

.hh_dropdown .options{
    margin-top: 10px;
    position: absolute;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 10px #7d7d7d;
    display: none;
    flex-direction: column;
    z-index: 2;
}

.hh_dropdown .options li{
    padding:10px 15px;
    display: flex;
    flex-direction: row;
}

.hh_dropdown .options li:hover{
    cursor: pointer;
    background-color: #d7d7d7;
}

.filters{
    padding:10px;
    display: flex;
    flex-direction: row;
    gap:10px;
}

.filters .optionConfig{
    width: 400px;
    padding-left: 10px;
    border-left: 2px solid #dbdbdb;
}

.filters *[active]{
    background-color: #000;
    color:#fff;
}

.filters *[active]:hover{
    color:#000;
}

.filters .datepicker{
    width: 100%;
}

.filters .datepicker td{
    padding:5px;
    width: 50%;
}

.filters .datepicker td div{
    background-color: #f2f2f2;
    border-radius: 5px;
    width: 100%;
}

.filters .datepicker td div span{
    padding: 10px;
    display: block;
}

.mainNavIcons{
    display: flex;
    flex-direction: row;
    align-items: center;
}

.mainNavIcons a{
    text-decoration: none;
    text-transform: capitalize;
    color:#000000;
}