body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    display: flex;
    justify-content: center;
    padding: 140px;
}

.app-container {
    background: rgb(255, 255, 255);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 300px;
}
h1 {
    text-align: center;
    color: #720eb1;
}
form {
    display: flex;
    margin-bottom: 20px;
    gap: 10px;
}
input{
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
button {
    padding: 10px 15px;
    border: none;
    background-color: #720eb1;
    color: white;
    border-radius: 4px;
    cursor: pointer;
}
button:hover {
    background-color: #5a0a8a; /* Darker shade on hover */
}
ul {
    list-style-type: none;
    padding: 0;
}
li {
    background: #f9f9f9;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.delete-btn {
    background: #ff4d4d;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
}
.delete-btn:hover {
    background: #e60000;
}

footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #fff;
    color: #720eb1;
    text-align: center;
    padding: 10px 0;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.05);
}
.message {
  text-align: center;
  color: green;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.8s ease;
  margin-top: 10px;
}
.message.show {
  opacity: 1;
}
#clock-section {
  margin-top: 20px;
}
