body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #f7f7f8;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    color: #111;
}

.card {
    background: white;
    padding: 32px 40px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    max-width: 420px;
}

h1 {
    margin: 0 0 12px;
    font-size: 22px;
}

p {
    margin: 0;
    font-size: 15px;
    color: #555;
}

/* --- EDIT LIST --- */

#edit-list {
    background: white;
    padding: 24px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    width: 420px;

    max-height: 80vh;
    overflow-y: auto;
}

.row {
    display: grid;
    grid-template-columns: 1fr 90px 32px;
    gap: 8px;
    margin-bottom: 8px;
}

input {
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
}

button {
    border-radius: 8px;
    border: none;
    background: #111;
    color: white;
    cursor: pointer;
    font-size: 14px;
}

.button-padding {
    padding: 8px 12px;
}

.remove {
    background: #e74c3c;
}

.actions {
    margin-top: 12px;
    display: flex;
    justify-content: space-between;
}