@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

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

body {
    font-family: 'Inter', sans-serif;
    background-color: #fafafa;
    color: #1a1a1a;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 1rem;
    min-height: 100vh;
}

h1 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.container {
    display: flex;
    justify-content: center;
    gap: 0.5em;
    margin-bottom: 1.5rem;
    width: 100%;
    max-width: 440px;
}

.container input {
    font-family: inherit;
    font-size: 0.875rem;
    flex: 1;
    padding: 0.25rem 0.75rem;
    border: 1px solid #d4d4d4;
    border-radius: 8px;
    outline: none;
}

.container input:focus {
    border-color: #a0a0a0;
}

.container button {
    background-color: transparent;
    font-size: 0.875rem;
    padding: 0.25rem 1rem;
    border: 1px solid #d4d4d4;
    border-radius: 8px;
    cursor: pointer;
}

.container button:hover {
    background-color: #f0f0f0;
}

.container button:active {
    transform: scale(0.98);
}

hr {
    width: 100%;
    max-width: 440px;
    border: none;
    border-top: 1px solid #ebebeb;
    margin-bottom: 1rem;
}

ul {
    list-style: none;
    width: 100%;
    max-width: 440px;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.625rem 0.75rem;
    border: 1px solid #ebebeb;
    border-radius: 8px;
    background-color: #fff;
}

li .remover-item {
    background-color: transparent;
    border: 1px solid #d4d4d4;
    border-radius: 4px;
    padding: 0.25rem 0.375rem;
    cursor: pointer;
}

li .remover-item:hover {
    background-color: #f0f0f0;
}