﻿
.scope-tareas .prio-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 0;
    border-radius: 8px;
    padding: 6px 10px;
    cursor: pointer;
    background: #f1f5f9;
    color: #334155;
    font-size: 14px;
    line-height: 1;
}

    .scope-tareas .prio-chip.compact {
        padding: 4px 8px
    }

    .scope-tareas .prio-chip .material-symbols-rounded {
        font-size: 18px;
        line-height: 1
    }

    .scope-tareas .prio-chip.p-high {
        background: rgba(225,29,72,.10);
        color: #9f1239
    }

    .scope-tareas .prio-chip.p-mid {
        background: rgba(245,158,11,.12);
        color: #92400e
    }

    .scope-tareas .prio-chip.p-low {
        background: rgba(37,170,225,.12);
        color: #0b5a7a
    }

.scope-tareas .tarea-table thead th {
    position: sticky;
    top: 0;
    z-index: 2;
    background: #0d6efd;
    color: #fff;
}

.icon-wrap {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    cursor: pointer;
    user-select: none;
}

    .icon-wrap:hover {
        background: #f1f5f9;
    }
        
    .icon-wrap .badge-count {
        position: absolute;
        top: -4px;
        right: -4px;
        min-width: 18px;
        height: 18px;
        padding: 0 5px;
        border-radius: 999px;
        background: #0A59A8;
        color: #fff;
        font-size: 11px;
        line-height: 18px;
        text-align: center;
        box-shadow: 0 2px 6px rgba(0,0,0,.2);
    }