
/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    padding: 50px;
}

/* Task Container Styles */
.task-container {
    height: 30px;
    position: relative;
    margin-bottom: 30px;
}

/* Wagon and Track Styles */
.wagon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 40px;
    background-color: red;
    z-index: 2;
}

.track {
    width: 1000px;
    height: 10px;
    background-color: #fff;
    border: 1px solid #000;
}

/* Countdown Timer Styles */
.countdown-timer {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: bold;
    color: #333;
    font-size: 16px;
}

/* Delete Button Styles */
.delete-btn {
    position: absolute;
    left: -35px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
}

/* Checked Image Styles */
.checked-img {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    display: none;  /* Initially hide the image */
}

.checked-img {
    display: none;
}
.checked-image {
    display: none; /* Initially hidden */
    width: 30px;
    height: 30px;
}
