﻿.btn-back {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.08);
    color: #c7d0d9;
    padding: 8px 16px;
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .btn-back:hover {
        background: rgba(255,255,255,0.05);
        color: #ffffff;
        border-color: rgba(255,255,255,0.2);
        transform: translateX(-2px);
    }


.check-custom {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #0b1118;
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.08);
    cursor: pointer;
    font-size: 14px;
}

    .check-custom input {
        transform: scale(1.2);
    }


.task-actions {
    display: flex;
    justify-content: center;
    gap: 6px;
}

.action-btn {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.08);
    background: #0b1118;
    color: #9aa4ad;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s ease;
}

    .action-btn:hover {
        transform: translateY(-1px);
    }

    .action-btn.edit:hover {
        color: #4dabf7;
        border-color: rgba(77,171,247,.4);
    }

    .action-btn.delete:hover {
        color: #ff4d6d;
        border-color: rgba(255,77,109,.4);
        background: rgba(255,0,0,.06);
    }

.need-yes {
    background: #dc3545; 
    color: white;
}

.need-no-green {
    background: #198754;
    color: white;
}