.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: calc(100% - var(--nav-height));
    gap: 2rem;
}

.title {
    font-size: 2.5rem;
    font-weight: 500;
}

.list-container {
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 70px;
    padding: 3rem;
    gap: 2.5rem;
}

.list-container input[type="checkbox"] {
    display: none;
}

.list-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    gap: 2.5rem;
}

.list-item .checkmark {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
    background-color: #ddd7d7;
}

.list-item .checkmark::before {
    content: "";
    width: 36px;
    height: 36px;
    background: url('/images/check-mark-list.svg') no-repeat center center;
    background-size: contain;
}

.list-item input[type="checkbox"]:checked + .checkmark {
    background-color: var(--primary-color);
}

.list-item .label {
    font-size: 2rem;
    font-weight: 400;
}

.button-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-top: 0rem;
}

.icon-button {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: none;
    width: 250px;
    height: 85px;
    cursor: pointer;
    box-shadow: var(--button-shadow);
}

.icon-button:disabled {
    background-color: var(--button-primary-desactivated);
    opacity: 0.5;
    cursor: not-allowed;
}

.checkQuitIcon {
    width: 40px;
}