* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    font-size: 18px;
    font-family: sans-serif;
    color: #222;
}

.btn {
    border: none;
    padding: 5px 10px;
    font-size: 1rem;
    font-weight: 600;
}

.btn-delete {
    color: white;
    background-color: #ff4949;
}

.input {
    font-size: 1rem;
    padding: 2px 10px;
    font-weight: 600;
}

.body {
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 10px 0;
}

.list__item {
    padding: 2px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.list__item_text {
    padding: 10px;
    border: 1px solid gray;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    flex: 1;
}
