body {
    margin: 0;
    min-width: 1500px;
    font-family: "Noto", Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f7f3f0;
}

.main {
    margin-top: 8px;
    display: flex;
    min-height: 500px;
}

aside {
    flex: 1;
}

section {
    width: 20%;
}

#addNewCardField {
    margin-top: 5px;
    width: auto;
    height: 30px;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 2px solid #094B7E;
}

button {
    border: 0;
    background: 0;
    cursor: pointer;
}


.oi-chevron-top,
.oi-chevron-bottom {
    font-size: 20px;
    color: white;
}

.oi-x {
    color: white;
}

.oi-check {
    color: black;
    font-size: 25px;
}

.column {
    height: 100%;
    display: flex;
    flex-direction: column;
    min-width: 300px;
}

.lists {
    display: flex;
    justify-content: flex-start;
    flex: 15;
    overflow-x: auto;
}

.list {
    align-self: flex-start;
    margin-left: 1em;
}

.list > header {
    background-color: #094B7E;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    border-radius: 0.3em;
    width: 100%;
    max-width: 100%;
}

.list > header > h3 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 87%;
}

.list-body {
    height: 100%;
    padding-right: 1em;
    border-right: solid 1px #d1d1d1;
}

.kanban-card {
    background-color: #0c8b85;
    border-radius: 1em;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 0.9em;
    margin-top: 0.5em;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.kanban-card > button {
    align-self: flex-start;
}

.kanban-card:hover {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

#red {
    background: #f44336;
    /* white text */
}

#blue {
    background: #2196f3;
    /* black text */
}

#green {
    background: #4caf50;
    /* black text */
}

#yellow {
    background: #ffeb3b;
    /* black text */
}
