
*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
.container{
    width: 100%;
    min-height: 100vh;
}
.navbar{
    background-color: #BEBEBE;
    width: 100%;
    height: 10vh;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.filter-box ,
.add-delete-box{
    width: 25%;
    height: 50%;
    background-color: #444;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.boxes{
    width: 20px;
    height: 20px;
    background-color: #DCDCDC;
    cursor: pointer;
}
.boxes h3{
    text-align: center;
    font-size: larger;
    font-weight: bolder;
}
.pink-filter-box{
    background-color: pink;
}
.blue-filter-box{
    background-color: blue;
}
.red-filter-box{
    background-color: red;
}
.violet-filter-box{
    background-color: violet;
}
.main{
    width: 100%;
    min-height: 90vh;
    position: relative;
        display: flex;
        justify-content: space-evenly;
        flex-wrap: wrap;
}
    .boxes:hover{
        border: 2px solid salmon;
    }
    .modal-box{
        width: 50%;
        height: 60vh;
        position: absolute;
        background-color: white;
    left: 20%;
    top: 10%;
    box-shadow: 0px 0px 30px #444;
    display: flex;
    }
    .type-modal-div{
        height: 100%;
        width: 60%;
        outline: none;
        margin: 10px;
    }
    .priority-boxes{
        background-color: #444;
        height: 100%;
        width: 40%;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
    }
    .modal-inner-box{
            height: 10%;
            width: 50%;
            cursor: pointer;
    }
    .modal-inner-box:hover{
        opacity: 0.7;
    }
    .pink-modal-box{
        background-color: pink;
    }
    .blue-modal-box{
        background-color: blue;
    }
    .red-modal-box{
        background-color: red;
    }
    .violet-modal-box{
        background-color: violet;
    }
    .active{
        border: 3px solid ;
    }
    .placeholder-modal-div{
        color: grey;
    }
    .ticket{
        margin: 20px;
        height: 16rem;
        width: 13rem;
        background-color: #fff;
        cursor: pointer;
        border: 2px solid;
    }
    .ticket-color{
        width: 100%;
        height: 5%;
    }
    .ticket-color-pink{
        background-color: pink;
    }
    .ticket-color-blue{
        background-color: blue;
    }
    .ticket-color-red{
        background-color: red;
    }
    .ticket-color-violet{
        background-color: violet;
    }
    .ticket-id{
        width: 100%;
        height: 10%;
        text-align: center;
    }
    .ticket-task{
        
        width: 100%;
        height: 80%;
        margin: 2.5% 0px;
    }
    .default{
        background-color: #DCDCDC;
    }
