body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f5f5f5; /* Latar belakang abu-abu e-commerce */
}

.container {
    width: 90%;
    max-width: 450px;
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

h2 {
    text-align: center;
    color: #EE4D2D; /* Warna Oranye Shopee */
    margin-top: 0;
    margin-bottom: 20px;
}

.input-group {
    display: flex;
    margin-bottom: 20px;
    border: 1px solid #EE4D2D; /* Border oranye */
    border-radius: 4px;
    overflow: hidden; /* Agar tombol dan input menyatu */
}

#itemInput {
    flex-grow: 1;
    padding: 12px;
    border: none; /* Hapus border default */
    font-size: 16px;
}

#itemInput:focus {
    outline: none; /* Hapus outline saat di-klik */
}

#addButton {
    padding: 12px 20px;
    border: none;
    background-color: #EE4D2D; /* Oranye Shopee */
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    /* Hilangkan border radius di sisi kiri */
    border-radius: 0; 
}

#addButton:hover {
    background-color: #d73111; /* Oranye lebih gelap */
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #fff;
    border-bottom: 1px solid #f0f0f0; /* Garis pemisah antar item */
    font-size: 18px;
    color: #333;
}

li:last-child {
    border-bottom: none;
}

.delete-btn {
    background-color: #fff5f2; /* Latar belakang oranye sangat muda */
    color: #EE4D2D; /* Teks oranye */
    border: 1px solid #EE4D2D;
    border-radius: 4px;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
}

.delete-btn:hover {
    background-color: #EE4D2D; /* Jadi oranye solid */
    color: white; /* Teks jadi putih */
}