* {
    box-sizing: border-box;
}

html,
body {
    background-color: white !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    height: 100% !important;
    width: 100% !important;
}

ul {
    background-color: white !important;
    max-height: 100px !important;
    height: auto;
    overflow-y: auto;
    width: 100% !important;
}

main {
    height: 100%;
    margin-left: 0 !important;
    display: flex;
    justify-content: center !important;
    align-items: center !important;
    padding: 0 !important;
    width: 100% !important;
}

body {
    overflow: hidden !important;
}

.task-form-section {
    width: 100%;
    height: 100%;
}

h1 {
    margin: 0px 0 16px 0;
}

.task-container {
    width: 100% !important;
    height: 100%;
}

form {
    gap: 0;
}

.ctn-board-add-task-overlay {
    justify-content: space-between;
    align-items: flex-start;
}

.btn-close-add-task {
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background-color: transparent;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.btn-close-add-task:hover {
    background-color: var(--lightgrey);
    cursor: pointer;
}

li {
    width: 100% !important;
}

@keyframes slide-in {
    0% {
        opacity: 0;
        transform: translateX(1000px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-out {
    animation: slide-in 0.2s ease-in-out 0s 1 reverse forwards;
}

.slide-in {
    animation: slide-in 0.2s ease-in-out 0s 1 normal forwards;
}