* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}


body {
    background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    min-height: 70vh;
    margin-top: 10%;
    margin-left: 35%;
    align-items: center;
    justify-content: center;
    background-blend-mode: darken;
    background-color: rgba(255, 94, 58, 0.7);

}


.container {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(6px);
    background: #fff;
    padding: 25px 30px;
    border-radius: 16px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    text-align: center;
}


.container h1 {
    color: #6a0dad;
    margin-bottom: 20px;
    font-size: 1.8rem;
}


.box {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.box input {
    flex: 1;
    min-width: 200px;
    padding: 10px 15px;
    border: 2px solid #6a0dad;
    border-radius: 8px;
    outline: none;
    font-size: 1rem;
}

.box button {
    background: #6a0dad;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
    font-size: 0.9rem;
}

.box button:hover {
    background: #510a8a;
}

.box .delete {
    background: #ff4d4d;
}

.box .delete:hover {
    background: #d93636;
}

ul {
    list-style: none;
    margin-top: 20px;
    text-align: left;
}

ul li {
    background: #f5f5f5;
    padding: 10px 15px;
    border-radius: 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s;
}

ul li:hover {
    background: #f0e0ff;
}

ul li span {
    flex: 1;
    font-size: 1rem;
    word-break: break-word;
}


ul li button {
    margin-left: 8px;
    padding: 6px 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 0.8rem;
}

ul li button:first-of-type {
    background: #00b894;
    color: #fff;
}

ul li button:first-of-type:hover {
    background: #019870;
}

ul li button:last-of-type {
    background: #ff7675;
    color: #fff;
}

ul li button:last-of-type:hover {
    background: #d63031;
}


@media (max-width: 500px) {
    .container {
        padding: 20px;
    }

    .box {
        flex-direction: column;
    }

    .box input {
        width: 100%;
    }

    .box button {
        width: 100%;
    }

    body {
        margin-left: 0%;
        margin: 20px;
    }
}








#red:hover {
    box-shadow: 0 0 15px red;
}

#green:hover {
    box-shadow: 0 0 15px green;
}

#yellow:hover {
    box-shadow: 0 0 15px gold;
}

#blue:hover {
    box-shadow: 0 0 15px dodgerblue;
}

#orange:hover {
    box-shadow: 0 0 15px orange;
}

#purple:hover {
    box-shadow: 0 0 15px purple;
}

#pink:hover {
    box-shadow: 0 0 15px hotpink;
}

#black:hover {
    box-shadow: 0 0 15px black;
}

#white:hover {
    box-shadow: 0 0 15px gray;
}

#brown:hover {
    box-shadow: 0 0 15px sienna;
}

#gray:hover {
    box-shadow: 0 0 15px gray;
}

#gold:hover {
    box-shadow: 0 0 15px gold;
}

#sky:hover {
    box-shadow: 0 0 15px deepskyblue;
}


#none {
    background: #f0f0f0;
    color: #333;
    border-radius: 15px;
    padding: 10px 20px;
    font-size: 16px;
}

#none:hover {
    background: #e0e0e0;
    box-shadow: 0 0 15px #aaa;
}






button {
  border: none;
  outline: none;
  font-size: 15px;
  border-radius: 50%;
  padding: 1px;
  cursor: pointer;
  background: white;
  transition: transform 0.2s, box-shadow 0.2s;
}


button:hover {
  transform: scale(1.2);
}




#red { box-shadow: 0 0 8px red; }
#green { box-shadow: 0 0 8px green; }
#yellow { box-shadow: 0 0 8px gold; }
#blue { box-shadow: 0 0 8px dodgerblue; }
#orange { box-shadow: 0 0 8px orange; }
#purple { box-shadow: 0 0 8px purple; }
#pink { box-shadow: 0 0 8px hotpink; }
#black { box-shadow: 0 0 8px black; }
#white { box-shadow: 0 0 8px gray; }
#brown { box-shadow: 0 0 8px sienna; }
#gray { box-shadow: 0 0 8px gray; }
#gold { box-shadow: 0 0 8px gold; }
#sky { box-shadow: 0 0 8px deepskyblue; }