*{
    box-sizing: border-box;
}
body{
    margin:0;
    padding: 0;
}
.toolbox-cont{
    height: 6rem;
    background-color: #4b4b4b;
    display: flex;
    align-items: center;
}
/** all child element take 4 rem margin 1 rem = 16px */
.toolbox-cont > *{
    margin-left: 4rem;
}

/* for .toolbox-priority-cont container color  */
.toolbox-priority-cont{
    height:  4.5rem;
    width : 20rem;
    background-color: #3d3d3d;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

/* :hover effect for all childs */
.toolbox-priority-cont > *:hover{
    background-color: #485460;
}
/* color indices */
.color{
    height: 2rem;
    width: 3.5rem;
}
.lightpink{
    background-color: lightpink;
}
.lightgreen{
    background-color: lightgreen;
}
.lightblue{
    background-color: lightblue;
}
.black{
    background-color: black;
}

/* for action btn countainer  */
.action-btn-cont{
    height: 4.5rem;
    width:10rem;
    background-color: #3d3d3d;
    display: flex;
}
.action-btn-cont > * {
    display: flex;
    width: 50%;
    font-size: 2rem;
    color: white;
    align-items: center;
    justify-content: center;
}

.add-btn:hover, .remove-btn:hover{
    background-color: #4bb543;
    font-size: 2.4rem;
}

/* for ticket designing Css */
.main-cont{
    display: flex;
    gap:2rem;
    justify-content: center;
    padding: 2rem;
    flex-wrap:wrap;
/* 
    As many ticket can be added here so this will make sure that the design is neat to accomodate multiple tickets */
}

.ticket-cont{
    height: 12rem;
    width: 15rem;
    background-color: coral;
}
.ticket-color{
    height: 1rem;
}
.ticket-id{
    background-color: yellow;
    height:1rem;
}
.ticket-lock{
    display: flex;
    justify-content: flex-end;
    margin-top: 110px;
    margin-right: 5px;
    font-size: 1.5rem;
}

.modal-cont{
    height: 50vh;
    width: 70vh;
    display: flex;
    background-color: lightsalmon;
    position: absolute;
    top:20%;
    left:30%;
}
.textArea-cont{
    height: 100%;
    width: 75%;
    resize: none;
    outline: none;
    border:none;
    background-color: #dfe4ea;
    font-size: 2rem;
    color: black;
}

.priority-colors-container{
    height: 100%;
    width: 25%;
    display: flex;
    flex-direction: column;
    background-color: #4b4b4b;
    align-items: center;
    justify-content: space-around;
}

.priority-color{
    height: 3rem;
    width: 5rem;
}
.active{
    border:5px solid lightsalmon;
}