* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 500px;
    overflow: hidden;

    h1 {
        text-align: center;
        margin-bottom: 20px;
    }

    ul {
        list-style-type: none;
        margin-bottom: 20px;

        li {
            padding: 10px;
            border-bottom: 1px solid #ddd;
            display: flex;
            justify-content: space-between;
            text-align: left;
            align-items: center;
            max-width: 100%;
            overflow: auto;

            input {
                min-width: 20px;
                min-height: 20px;
            }

            span {
                flex: 1;
                margin-left: 10px;
                width: 86%;
            }

            button {
                background-color: #ff4d4d;
                color: white;
                border: none;
                padding: 5px 10px;
                border-radius: 3px;
                cursor: pointer;

                &:hover {
                    background-color: #ff1a1a;
                }
            }
        }
    }

    div {
        display: flex;
        justify-content: space-between;

        input {
            width: 70%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 3px;
        }

        button {
            background-color: #4CAF50;
            color: white;
            border: none;
            padding: 10px 15px;
            border-radius: 3px;
            cursor: pointer;

            &:hover {
                background-color: #45a049;
            }
        }
    }


}