* {
    box-sizing: border-box;
}

body {
    margin: 0;
}

.container {
    height: 100vh;
    width: 100vw;
}

.navbar {
    background-color: #57606f;
    height: 16vh;
    width: 100vw;
    display: flex;
}

.grid {
    height: 85vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.filters,
.action-buttons,
.styling {
    height: 50%;
    background-color: #2f3542;
    margin-top: calc( ( 25 / 100) * 15vh);
    margin-left: 5rem;
}

.styling {
    width: 12rem;
    display: flex;
}

.bold,
.italics,
.underline {
    width: 33%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.filters {
    width: 15rem;
    display: flex;
}

.action-buttons {
    width: 8rem;
    display: flex;
}

.filter {
    width: 25%;
    height: 100%;
    /* default flex direction /: horizontal  */
    display: flex;
    /* this will set your child in horizontal center */
    align-items: center;
    /* this will set your children in opposite direction of flex  */
    justify-content: center;
}

.filter:hover {
    background-color: #747d8c;
}

.add,
.delete {
    height: 100%;
    width: 50%;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.delete {
    font-size: 2.8rem;
}

.add:hover,
.delete:hover,
.bold:hover,
.italics:hover,
.underline:hover,
.font:hover,
.delete-selected,
.bold-selected,
.italics-selected,
.underline-selected {
    background-color: #747d8c;
}

.underline-text {
    text-decoration: underline;
}

.color-selected {
    background-color: #747d8c;
}

.filter div {
    height: 50%;
    width: 50%;
    border: 1px solid black;
    border-radius: 6px;
}

.pink {
    background-color: #ff6b81;
}

.green {
    background-color: #1dd1a1;
}

.black {
    background-color: black;
}

.blue {
    background-color: #48dbfb;
}


/* !important -> it override  the property of these predefined icons */


/* these icons have pre-defined properties so (!important) overrride the predefined properties */

.material-icons {
    font-size: 2rem!important;
    cursor: default;
}

.modal {
    height: 20rem;
    width: 35rem;
    position: fixed;
    top: 20vh;
    /* ye left wala 50% body ki width ka 50 hai */
    left: 50%;
    /* translate function ->  ye particular element ka 50% nikal kr usse body ke 50% k sath allign kr deta hai */
    transform: translateX(-50%);
    display: flex;
}

.task-section {
    background-color: #ecf0f1;
    height: 100%;
    width: 70%;
    /* border: 2px solid; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.task-inner-container {
    height: 80%;
    width: 80%;
    /* border: 1px solid; */
    background-color: white;
    outline: none;
    font-size: 1.3rem;
    font-family: Arial, Helvetica, sans-serif;
    padding: 10px;
    overflow: auto;
}

.modal-priority-section {
    height: 100%;
    width: 30%;
    /* border: 1px solid; */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #2c3e50;
}

.priority-inner-conatiner {
    background-color: white;
    height: 80%;
    width: 60%;
    /* border: 1px solid; */
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

.modal-priority {
    height: 22%;
    width: 80%;
    /* border: 1px solid; */
}

.modal-priority:hover {
    border: 5px solid #e74c3c;
}

.selected {
    border: 5px solid #e74c3c;
}

.ticket {
    margin: 10px;
    width: 20rem;
    height: 12rem;
    border: 2px solid #485460;
    font-family: Arial, Helvetica, sans-serif;
    cursor: pointer;
}

.ticket-color {
    width: 100%;
    height: 8%;
}

.ticket-id {
    width: 100%;
    height: 16%;
    font-weight: bold;
    padding: 5px;
}

.actual-task {
    width: 100%;
    height: 76%;
    background-color: #d2dae2;
    padding: 5px;
    text-align: center;
    outline: none;
    overflow: auto;
}