body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(to right, #E3EDFF, #FFEBF2);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 100vh;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

.container {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 1200px;
    text-align: center;
    overflow-y: auto;
    max-height: 90vh;
    box-sizing: border-box;
}

#task-form {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

#task-form input {
    margin: 0;
    padding: 10px;
    flex: 1;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#task-form button {
    padding: 10px 20px;
    background-color: #292929;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.tasks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.task {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color:
