/* =========================================================================
   TASKS LIST & ITEMS
   ========================================================================= */

.task-list {
    width: 90%;
    max-width: 450px;
    margin-top: 20px;
    padding-bottom: 100px;
}

.task-item {
    background: linear-gradient(135deg, rgba(16, 26, 52, 0.92) 0%, rgba(10, 16, 36, 0.95) 100%);
    border-radius: 20px;
    padding: 16px 20px;
    margin-bottom: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1.5px solid rgba(0, 210, 255, 0.35);
    border-top: 1.5px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 210, 255, 0.15), inset 0 1px 1px rgba(255, 255, 255, 0.2);
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.2s, box-shadow 0.2s;
    transform: translateZ(0);
}

.task-item:active {
    transform: scale(0.97);
    background: linear-gradient(135deg, rgba(20, 32, 64, 0.95) 0%, rgba(12, 20, 44, 0.98) 100%);
}

.task-info h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #fff;
    margin-bottom: 4px;
}

.task-info p {
    margin: 0;
    font-size: 12px;
    color: #aaa;
}

.task-btn {
    background: linear-gradient(45deg, #00d2ff, #0055ff);
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    color: #fff;
    font-family: 'GameFont', sans-serif;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.15s, opacity 0.2s;
    flex-shrink: 0;
}

.task-btn:active {
    transform: scale(0.95);
}

.task-btn:disabled {
    background: #333;
    color: #555;
    cursor: not-allowed;
}
