.nzt-proy-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    flex-wrap: wrap;
}

.nzt-proy-head-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nzt-proy-metric {
    background:
        radial-gradient(circle at top right, rgba(34, 211, 238, 0.10), transparent 34%),
        rgba(2, 6, 23, 0.42);
}

.nzt-proy-info-card {
    padding: 16px 18px;
    margin-bottom: 24px;
}

.nzt-proy-info-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.nzt-proy-info-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(15, 23, 42, 0.48);
    color: #e2e8f0;
    border-radius: 999px;
    padding: 9px 13px;
    font-size: 13px;
    font-weight: 700;
}

.nzt-proy-info-pill i {
    color: var(--nzt-cyan);
}

.nzt-proy-info-note {
    color: #94a3b8;
    font-size: 13px;
    line-height: 1.45;
}

.nzt-proy-info-note strong {
    color: #e2e8f0;
}

.nzt-proy-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    align-items: start;
    margin-top: 12px;
}

.nzt-proy-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(56, 189, 248, 0.24);
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(34, 211, 238, 0.16), transparent 38%),
        linear-gradient(145deg, rgba(15, 23, 42, 0.96), rgba(8, 13, 28, 0.94));
    box-shadow:
        0 22px 48px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.nzt-proy-card:hover {
    border-color: rgba(34, 211, 238, 0.42);
    transform: translateY(-1px);
}

.nzt-proy-card-header {
    width: 100%;
    border: 0;
    background: transparent;
    color: #f8fafc;
    padding: 22px;
    display: grid;
    grid-template-columns: 1fr 24px;
    gap: 14px;
    align-items: start;
    cursor: pointer;
    text-align: left;
}

.nzt-proy-card-title-wrap h3 {
    margin: 0 0 10px 0;
    color: #f8fafc;
    font-size: 19px;
    font-weight: 950;
    letter-spacing: -0.01em;
}

.nzt-proy-card-meta {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 8px;
}

.nzt-proy-card-meta strong {
    color: #f8fafc;
    font-size: 20px;
    font-weight: 950;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 0 18px rgba(34, 211, 238, 0.10);
}

.nzt-proy-card-meta span {
    color: #94a3b8;
    font-size: 13px;
}

.nzt-proy-card-state {
    color: #dbeafe;
    font-size: 13px;
    margin-bottom: 6px;
}

.nzt-proy-card-link {
    color: var(--nzt-cyan);
    font-size: 13px;
    font-weight: 800;
}

.nzt-proy-card-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--nzt-cyan);
    font-size: 15px;
    transition: transform 0.2s ease;
}

.nzt-proy-card.abierta .nzt-proy-card-icon {
    transform: rotate(180deg);
}

.nzt-proy-card-body {
    display: none;
    padding: 0 22px 20px 22px;
}

.nzt-proy-card.abierta .nzt-proy-card-body {
    display: block;
}

.nzt-proy-card-month {
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    padding-top: 16px;
    margin-bottom: 14px;
    color: #f8fafc;
    font-weight: 900;
    font-size: 14px;
}

.nzt-proy-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 440px;
    overflow-y: auto;
    padding-right: 4px;
}

.nzt-proy-items::-webkit-scrollbar {
    width: 8px;
}

.nzt-proy-items::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.7);
    border-radius: 999px;
}

.nzt-proy-items::-webkit-scrollbar-thumb {
    background: rgba(34, 211, 238, 0.34);
    border-radius: 999px;
}

.nzt-proy-item {
    display: block;
    position: relative;
    padding: 14px;
    border-radius: 16px;
    overflow: hidden;
    cursor: default;
    background: rgba(15, 23, 42, 0.58);
    border: 1px solid rgba(148, 163, 184, 0.14);
    transition: border-color 0.2s ease, background 0.2s ease;
}

.nzt-proy-item:hover {
    border-color: rgba(34, 211, 238, 0.26);
    background: rgba(15, 23, 42, 0.68);
}

.nzt-proy-item-main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
    margin-bottom: 12px;
}

.nzt-proy-item-name {
    display: block;
    min-width: 0;
    flex: 1;
    color: #f8fafc;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.28;
    white-space: normal;
    overflow-wrap: anywhere;
    text-decoration: none;
}

.nzt-proy-item-money {
    display: block;
    flex: 0 0 auto;
    color: rgba(226, 232, 240, 0.78);
    font-size: 13px;
    font-weight: 800;
    text-align: right;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.nzt-proy-register-row {
    display: grid;
    grid-template-columns: minmax(120px, 160px) minmax(135px, 170px) minmax(160px, 1fr);
    gap: 10px;
    align-items: center;
    width: 100%;
}

.nzt-proy-register-monto,
.nzt-proy-register-fecha {
    width: 100%;
    min-width: 0;
    height: 40px;
    box-sizing: border-box;
    border-radius: 13px;
    border: 1px solid rgba(56, 189, 248, 0.30);
    background: rgba(2, 6, 23, 0.72);
    color: #e5f6ff;
    padding: 0 12px;
    font-size: 13px;
    font-weight: 700;
    outline: none;
}

.nzt-proy-register-monto:focus,
.nzt-proy-register-fecha:focus {
    border-color: rgba(34, 211, 238, 0.86);
    box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.13);
}

.nzt-proy-register-monto::-webkit-outer-spin-button,
.nzt-proy-register-monto::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.nzt-proy-register-monto {
    appearance: textfield;
    -moz-appearance: textfield;
}

.nzt-proy-register-fecha::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: 0.74;
}

.nzt-proy-register-btn {
    width: 100%;
    min-height: 40px;
    justify-content: center;
}

.nzt-proy-item.completado {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 74px;
    padding: 14px;
    border-radius: 16px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.32);
    opacity: 1;
}

.nzt-proy-item-registered {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    text-align: center;
}

.nzt-proy-item-registered-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.18);
    color: #86efac;
}

.nzt-proy-item-registered-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    justify-content: center;
}

.nzt-proy-item-registered-body strong {
    color: #e5f6ff;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 900;
}

.nzt-proy-item-registered-body span {
    color: rgba(226, 232, 240, 0.78);
    font-size: 12px;
    line-height: 1.25;
    font-weight: 700;
}

.nzt-proy-card-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 14px;
    margin-top: 12px;
    border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.nzt-proy-card-help {
    width: 100%;
    text-align: center;
    margin: 0 auto;
    padding: 10px 14px;
    color: rgba(226, 232, 240, 0.82);
    font-size: 13px;
    line-height: 1.45;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.42);
    border: 1px solid rgba(148, 163, 184, 0.14);
}

.nzt-proy-card-success {
    position: absolute;
    inset: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    border-radius: inherit;
    background:
        radial-gradient(circle at center, rgba(34, 197, 94, 0.18), transparent 42%),
        rgba(2, 6, 23, 0.78);
    backdrop-filter: blur(5px);
    animation: nztProySuccessIn 0.18s ease-out;
}

.nzt-proy-card-success.saliendo {
    opacity: 0;
    transform: scale(0.985);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.nzt-proy-card-success-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 260px;
    max-width: 92%;
    padding: 18px 22px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(6, 78, 59, 0.96), rgba(8, 47, 73, 0.96));
    border: 1px solid rgba(52, 211, 153, 0.55);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.38);
    text-align: left;
}

.nzt-proy-card-success-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(52, 211, 153, 0.18);
    color: #86efac;
    font-size: 20px;
}

.nzt-proy-card-success-box strong {
    color: #f8fafc;
    font-size: 15px;
    line-height: 1.25;
    font-weight: 950;
}

.nzt-proy-pagination {
    width: 100%;
    margin-top: 22px;
    margin-bottom: 8px;
}

.nzt-proy-pagination-inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    color: #94a3b8;
    font-size: 12px;
}

.nzt-proy-pagination-inner span {
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: rgba(15, 23, 42, 0.58);
    border-radius: 999px;
    padding: 8px 13px;
}

.nzt-toast-container {
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 9999;
    display: grid;
    gap: 10px;
    width: min(420px, calc(100vw - 28px));
}

.nzt-toast {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 10px;
    align-items: start;
    border: 1px solid rgba(34, 211, 238, 0.28);
    border-radius: 18px;
    background:
        radial-gradient(circle at top right, rgba(34, 211, 238, 0.16), transparent 34%),
        rgba(15, 23, 42, 0.98);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.46);
    padding: 14px;
    animation: nztToastIn 0.22s ease-out;
}

.nzt-toast.ok {
    border-color: rgba(34, 197, 94, 0.36);
}

.nzt-toast.error {
    border-color: rgba(239, 68, 68, 0.46);
}

.nzt-toast.info {
    border-color: rgba(34, 211, 238, 0.32);
}

.nzt-toast-icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(8, 47, 73, 0.42);
    color: var(--nzt-cyan);
}

.nzt-toast.ok .nzt-toast-icon {
    color: #bbf7d0;
    background: rgba(20, 83, 45, 0.36);
}

.nzt-toast.error .nzt-toast-icon {
    color: #fecaca;
    background: rgba(127, 29, 29, 0.36);
}

.nzt-toast-body strong {
    display: block;
    color: #f8fafc;
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 4px;
}

.nzt-toast-body span {
    display: block;
    color: #cbd5e1;
    font-size: 13px;
    line-height: 1.4;
}

.nzt-toast.saliendo {
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

@keyframes nztToastIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes nztProySuccessIn {
    from {
        opacity: 0;
        transform: scale(0.985);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 980px) {
    .nzt-proy-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .nzt-toast-container {
        top: 12px;
        right: 12px;
        left: 12px;
        width: auto;
    }

    .nzt-proy-pagination-inner {
        justify-content: center;
    }

    .nzt-proy-pagination-inner .nzt-page-btn {
        width: auto;
    }
}

@media (max-width: 720px) {
    .nzt-proy-card-header {
        grid-template-columns: 1fr;
    }

    .nzt-proy-card-icon {
        justify-content: flex-start;
    }

    .nzt-proy-item-main {
        flex-direction: column;
        gap: 5px;
    }

    .nzt-proy-item-money {
        text-align: left;
    }

    .nzt-proy-register-row {
        grid-template-columns: 1fr;
    }

    .nzt-proy-card-success-box {
        min-width: 0;
        width: 100%;
    }
}

/* Mensaje central de acciones de proyección */
.nzt-proy-message-zone {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 16px 0 18px;
}

.nzt-proy-message {
    width: min(560px, 100%);
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: center;
    border-radius: 20px;
    padding: 15px 17px;
    background:
        radial-gradient(circle at top right, rgba(34, 211, 238, 0.16), transparent 34%),
        rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(34, 211, 238, 0.30);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.32);
}

.nzt-proy-message.ok {
    border-color: rgba(34, 197, 94, 0.42);
}

.nzt-proy-message.error {
    border-color: rgba(239, 68, 68, 0.48);
}

.nzt-proy-message.info {
    border-color: rgba(34, 211, 238, 0.34);
}

.nzt-proy-message-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(8, 47, 73, 0.46);
    color: var(--nzt-cyan);
}

.nzt-proy-message.ok .nzt-proy-message-icon {
    color: #bbf7d0;
    background: rgba(20, 83, 45, 0.40);
}

.nzt-proy-message.error .nzt-proy-message-icon {
    color: #fecaca;
    background: rgba(127, 29, 29, 0.40);
}

.nzt-proy-message-body strong {
    display: block;
    color: #f8fafc;
    font-size: 14px;
    font-weight: 950;
    margin-bottom: 4px;
}

.nzt-proy-message-body span {
    display: block;
    color: #cbd5e1;
    font-size: 13px;
    line-height: 1.4;
}

/* Mensaje flotante centrado para sincronización */
.nzt-sync-message-overlay {
    position: fixed;
    inset: 0;
    z-index: 9998;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
    pointer-events: none;
}

.nzt-sync-message-overlay.visible {
    display: flex;
}

.nzt-sync-message {
    width: min(520px, 100%);
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: center;
    border-radius: 22px;
    padding: 16px 18px;
    background:
        radial-gradient(circle at top right, rgba(34, 211, 238, 0.18), transparent 34%),
        rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(34, 211, 238, 0.34);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
    animation: nztSyncMessageIn 0.18s ease-out;
}

.nzt-sync-message.ok {
    border-color: rgba(34, 197, 94, 0.46);
}

.nzt-sync-message.error {
    border-color: rgba(239, 68, 68, 0.50);
}

.nzt-sync-message.info {
    border-color: rgba(34, 211, 238, 0.36);
}

.nzt-sync-message-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(8, 47, 73, 0.46);
    color: var(--nzt-cyan);
}

.nzt-sync-message.ok .nzt-sync-message-icon {
    color: #bbf7d0;
    background: rgba(20, 83, 45, 0.42);
}

.nzt-sync-message.error .nzt-sync-message-icon {
    color: #fecaca;
    background: rgba(127, 29, 29, 0.42);
}

.nzt-sync-message-body strong {
    display: block;
    color: #f8fafc;
    font-size: 15px;
    font-weight: 950;
    margin-bottom: 4px;
}

.nzt-sync-message-body span {
    display: block;
    color: #cbd5e1;
    font-size: 13px;
    line-height: 1.4;
}

@keyframes nztSyncMessageIn {
    from {
        opacity: 0;
        transform: translateY(8px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* =========================================================
   Proyección - UX lista completa sin scroll interno + selección
   ========================================================= */

.nzt-proy-items {
    max-height: none !important;
    overflow: visible !important;
    padding-right: 0 !important;
}

.nzt-proy-items::-webkit-scrollbar {
    display: none;
}

.nzt-proy-batch-toolbar {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: center;
    margin-bottom: 12px;
    padding: 12px;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.48);
    border: 1px solid rgba(148, 163, 184, 0.14);
}

.nzt-proy-batch-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.nzt-proy-batch-info strong {
    color: #f8fafc;
    font-size: 13px;
    font-weight: 950;
}

.nzt-proy-batch-info span {
    color: #94a3b8;
    font-size: 12px;
    font-weight: 750;
}

.nzt-proy-batch-buttons {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.nzt-proy-mini-btn {
    min-height: 36px;
    border-radius: 999px;
    padding: 0 13px;
    border: 1px solid rgba(34, 211, 238, 0.34);
    background: rgba(8, 47, 73, 0.35);
    color: #e5f6ff;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
    transition: 0.16s ease;
}

.nzt-proy-mini-btn:hover {
    border-color: rgba(34, 211, 238, 0.68);
    background: rgba(8, 47, 73, 0.56);
}

.nzt-proy-mini-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.nzt-proy-batch-pay-btn {
    min-height: 36px;
    border-radius: 999px;
    padding: 0 14px;
    border: 1px solid rgba(34, 211, 238, 0.50);
    background:
        radial-gradient(circle at top right, rgba(34, 211, 238, 0.22), transparent 36%),
        rgba(8, 47, 73, 0.72);
    color: #f8fafc;
    font-size: 12px;
    font-weight: 950;
    cursor: pointer;
    transition: 0.16s ease;
}

.nzt-proy-batch-pay-btn:hover {
    filter: brightness(1.08);
}

.nzt-proy-batch-pay-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.nzt-proy-item {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
}

.nzt-proy-item.completado {
    display: flex;
}

.nzt-proy-item-selector {
    padding-top: 2px;
}

.nzt-proy-item-check {
    width: 20px;
    height: 20px;
    accent-color: #22d3ee;
    cursor: pointer;
}

.nzt-proy-item.seleccionado {
    border-color: rgba(34, 211, 238, 0.62);
    background:
        radial-gradient(circle at top right, rgba(34, 211, 238, 0.13), transparent 36%),
        rgba(15, 23, 42, 0.82);
}

.nzt-proy-item-content {
    min-width: 0;
}

.nzt-proy-card.processing {
    pointer-events: none;
    opacity: 0.78;
}

@media (max-width: 720px) {
    .nzt-proy-batch-toolbar {
        grid-template-columns: 1fr;
    }

    .nzt-proy-batch-buttons {
        justify-content: stretch;
    }

    .nzt-proy-mini-btn,
    .nzt-proy-batch-pay-btn {
        width: 100%;
    }

    .nzt-proy-item {
        grid-template-columns: 26px minmax(0, 1fr);
    }
}

/* Confirmación contextual dentro de card de proyección */
.nzt-proy-card-confirm {
    position: absolute;
    inset: 0;
    z-index: 35;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    border-radius: inherit;
    background:
        radial-gradient(circle at center, rgba(34, 211, 238, 0.16), transparent 44%),
        rgba(2, 6, 23, 0.82);
    backdrop-filter: blur(6px);
    animation: nztProyConfirmIn 0.18s ease-out;
}

.nzt-proy-card-confirm.saliendo {
    opacity: 0;
    transform: scale(0.985);
    transition: opacity 0.20s ease, transform 0.20s ease;
}

.nzt-proy-card-confirm-box {
    width: min(520px, 100%);
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
    padding: 20px;
    border-radius: 22px;
    background:
        radial-gradient(circle at top right, rgba(34, 211, 238, 0.18), transparent 38%),
        linear-gradient(145deg, rgba(15, 23, 42, 0.98), rgba(8, 13, 28, 0.98));
    border: 1px solid rgba(34, 211, 238, 0.42);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.54);
}

.nzt-proy-card-confirm-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(8, 47, 73, 0.62);
    color: var(--nzt-cyan);
    font-size: 20px;
}

.nzt-proy-card-confirm-body {
    min-width: 0;
}

.nzt-proy-card-confirm-body strong {
    display: block;
    color: #f8fafc;
    font-size: 17px;
    font-weight: 950;
    margin-bottom: 6px;
}

.nzt-proy-card-confirm-body span {
    display: block;
    color: #dbeafe;
    font-size: 14px;
    line-height: 1.45;
    margin-bottom: 5px;
}

.nzt-proy-card-confirm-body small {
    display: block;
    color: #94a3b8;
    font-size: 12px;
    line-height: 1.4;
}

.nzt-proy-card-confirm-actions {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 4px;
}

.nzt-proy-confirm-cancel,
.nzt-proy-confirm-ok {
    min-height: 40px;
    border-radius: 999px;
    padding: 0 16px;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
    transition: 0.16s ease;
}

.nzt-proy-confirm-cancel {
    border: 1px solid rgba(148, 163, 184, 0.26);
    background: rgba(15, 23, 42, 0.70);
    color: #cbd5e1;
}

.nzt-proy-confirm-cancel:hover {
    border-color: rgba(148, 163, 184, 0.44);
    color: #f8fafc;
}

.nzt-proy-confirm-ok {
    border: 1px solid rgba(34, 211, 238, 0.58);
    background:
        radial-gradient(circle at top right, rgba(34, 211, 238, 0.24), transparent 36%),
        rgba(8, 47, 73, 0.86);
    color: #f8fafc;
}

.nzt-proy-confirm-ok:hover {
    filter: brightness(1.08);
}

@keyframes nztProyConfirmIn {
    from {
        opacity: 0;
        transform: scale(0.985);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 720px) {
    .nzt-proy-card-confirm {
        align-items: flex-end;
        padding: 14px;
    }

    .nzt-proy-card-confirm-box {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 18px;
    }

    .nzt-proy-card-confirm-icon {
        display: none;
    }

    .nzt-proy-card-confirm-actions {
        flex-direction: column-reverse;
    }

    .nzt-proy-confirm-cancel,
    .nzt-proy-confirm-ok {
        width: 100%;
    }
}