:root {
    --bg: #E0E5EC;
    --shadow-dark: #A3B1C6;
    --shadow-light: #FFFFFF;
    --accent: #475E75;
}

body {
    background-color: var(--bg);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--accent);
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

.container {
    width: 100%;
    max-width: 500px;
}

h1 {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 2px 2px 4px var(--shadow-dark);
    /* Paste this line here: */
    animation: floating 3s ease-in-out infinite;
}

/* ... existing code above ... */

/* Floating Animation Effect */
@keyframes floating {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

}

/* 3D Neumorphic Card */
.glass-card, li {
    background: var(--bg);
    border-radius: 20px;
    box-shadow: 9px 9px 16px var(--shadow-dark), 
               -9px -9px 16px var(--shadow-light);
    padding: 20px;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

li:hover {
    transform: translateY(-5px);
}

/* Form Styling */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input, select, button {
    border: none;
    outline: none;
    background: var(--bg);
    border-radius: 10px;
    padding: 12px;
    box-shadow: inset 3px 3px 6px var(--shadow-dark), 
                inset -3px -3px 6px var(--shadow-light);
    color: var(--accent);
}

button {
    box-shadow: 5px 5px 10px var(--shadow-dark), 
                -5px -5px 10px var(--shadow-light);
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
}

button:active {
    box-shadow: inset 2px 2px 5px var(--shadow-dark), 
                inset -2px -2px 5px var(--shadow-light);
}

/* Task Items */
ul { list-style: none; padding: 0; }

li {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.task-info strong { display: block; font-size: 1.1em; }

.task-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.btn-small {
    padding: 5px 10px;
    font-size: 0.8em;
}

/* Priority Dots */
.priority-high { border-left: 5px solid #ff4d4d; }
.priority-medium { border-left: 5px solid #ffa500; }
.priority-low { border-left: 5px solid #2ecc71; }