:root {
    --nt-p: #003087;
    --nt-b: #f0f2f5;
    --nt-a: #fb5518;
}

/* ── Base Wrap ─────────────────────────────────────────────── */
.nt-wrap {
    font-family: 'Outfit', 'Anek Bangla', sans-serif;
}
@media (min-width: 783px) {
    .nt-wrap { margin: -20px 0 0 -20px; }
}
@media (max-width: 600px) {
    .nt-wrap { padding: 0 10px 0 0 !important; }
}

/* ── Animated Gradient ─────────────────────────────────────── */
@keyframes ntGradient {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ── Header Banner ─────────────────────────────────────────── */
.nt-top {
    background: linear-gradient(-45deg, #001a4d, #003087, #0056b3, #001a4d);
    background-size: 400% 400%;
    animation: ntGradient 15s ease infinite;
    border-radius: 20px;
}
@media (max-width: 600px) {
    .nt-top { padding: 20px !important; }
    .nt-top h3 { font-size: 1.1rem !important; }
    .nt-pkg-ico { width: 50px !important; height: 50px !important; }
    .nt-pkg-ico i { font-size: 1.5rem !important; }
}

/* ── Status Dot (header) ───────────────────────────────────── */
.nt-dot {
    box-shadow: 0 0 10px currentColor;
}

/* ── Force Bootstrap Icons to always render ────────────────── */
.bi::before,
[class^="bi-"]::before,
[class*=" bi-"]::before {
    display: inline-block !important;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -.125em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ══════════════════════════════════════════════════════════════
   SHARED CARD SYSTEM  (used by dashboard + settings pages)
══════════════════════════════════════════════════════════════ */
.nt-s-card {
    background: #fff;
    border-radius: 22px;
    border: 1px solid rgba(0, 48, 135, 0.08);
    box-shadow: 0 4px 28px rgba(0, 48, 135, 0.07);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}
.nt-s-card:hover {
    box-shadow: 0 8px 40px rgba(0, 48, 135, 0.13);
}

.nt-s-card-head {
    padding: 20px 24px 16px;
    border-bottom: 1px solid rgba(0, 48, 135, 0.06);
    display: flex;
    align-items: center;
    gap: 14px;
}
.nt-s-card-head-icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.nt-s-card-head-icon.blue   { background: linear-gradient(135deg, #003087, #0056b3); color: #fff; }
.nt-s-card-head-icon.orange { background: linear-gradient(135deg, #fb5518, #ff8a50); color: #fff; }
.nt-s-card-head h4 {
    font-size: .97rem;
    font-weight: 800;
    color: #001a4d;
    margin: 0 0 2px;
    letter-spacing: -0.2px;
}
.nt-s-card-head p {
    font-size: 0.76rem;
    color: #7a8ab0;
    margin: 0;
}
.nt-s-card-body { padding: 24px; }

/* ══════════════════════════════════════════════════════════════
   DASHBOARD PAGE
══════════════════════════════════════════════════════════════ */
.nt-db-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 26px;
    align-items: start;
}
@media (max-width: 1024px) { .nt-db-grid { grid-template-columns: 1fr; } }

/* Stat grid */
.nt-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.nt-stat-item {
    border-radius: 16px;
    padding: 18px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid transparent;
    transition: transform 0.25s, box-shadow 0.25s;
    cursor: default;
}
.nt-stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}
.nt-stat-item.blue   { background: linear-gradient(135deg, #e8f0ff, #dce8ff); border-color: #c8d8ff; }
.nt-stat-item.green  { background: linear-gradient(135deg, #e8f8f0, #d8f2e6); border-color: #b8e8cc; }
.nt-stat-item.purple { background: linear-gradient(135deg, #f3e8ff, #ede0ff); border-color: #d8c0f8; }
.nt-stat-item.orange { background: linear-gradient(135deg, #fff3e8, #ffead8); border-color: #ffc8a0; }
.nt-stat-item.teal   { background: linear-gradient(135deg, #e0f8f8, #d0f4f4); border-color: #a8e4e4; }
.nt-stat-item.rose   { background: linear-gradient(135deg, #ffe8ee, #ffd8e4); border-color: #ffb0c8; }
.nt-stat-item.indigo { background: linear-gradient(135deg, #e8eaff, #d8dcff); border-color: #b0b8ff; }

.nt-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}
.blue   .nt-stat-icon { background: rgba(0, 48, 135, 0.12);  color: #003087; }
.green  .nt-stat-icon { background: rgba(16, 163, 74, 0.12); color: #0d9448; }
.purple .nt-stat-icon { background: rgba(106, 27, 154, 0.12); color: #6a1b9a; }
.orange .nt-stat-icon { background: rgba(251, 85, 24, 0.12); color: #fb5518; }
.teal   .nt-stat-icon { background: rgba(14, 116, 144, 0.12); color: #0e7490; }
.rose   .nt-stat-icon { background: rgba(190, 18, 60, 0.12); color: #be123c; }
.indigo .nt-stat-icon { background: rgba(79, 70, 229, 0.12);  color: #4f46e5; }

.nt-stat-info strong {
    display: block;
    font-size: 1.55rem;
    font-weight: 900;
    color: #001a4d;
    line-height: 1;
    margin-bottom: 4px;
}
.nt-stat-info span { font-size: 0.78rem; font-weight: 600; color: #4a5a88; }
.nt-stat-info small { display: block; font-size: 0.68rem; color: #8a9ac0; margin-top: 2px; }

/* Quick access buttons */
.nt-quick-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 20px;
}
.nt-quick-btn {
    background: #f5f7ff;
    border: 1.5px solid rgba(0, 48, 135, 0.09);
    border-radius: 13px;
    padding: 13px 8px;
    text-align: center;
    text-decoration: none;
    color: #001a4d;
    font-weight: 700;
    font-size: 0.73rem;
    transition: all 0.22s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
}
.nt-quick-btn i { font-size: 20px; color: #003087; }
.nt-quick-btn:hover {
    background: linear-gradient(135deg, #003087, #0056b3);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(0, 48, 135, 0.22);
    text-decoration: none;
}
.nt-quick-btn:hover i { color: #fff; }

/* Package info card */
.nt-pkg-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #003087, #0056b3);
    color: #fff;
    margin-bottom: 20px;
}
.nt-pkg-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 0;
    border-bottom: 1px solid rgba(0, 48, 135, 0.06);
    font-size: 0.83rem;
}
.nt-pkg-row:last-child  { border-bottom: none; padding-bottom: 0; }
.nt-pkg-row:first-child { padding-top: 0; }
.nt-pkg-row .label  { color: #7a8ab0; font-weight: 600; display: flex; align-items: center; gap: 7px; }
.nt-pkg-row .value  { font-weight: 800; color: #001a4d; text-align: right; }
.nt-pkg-row .value.danger  { color: #dc2626; }
.nt-pkg-row .value.success { color: #16a34a; }

.nt-exp-bar-wrap {
    background: rgba(0, 48, 135, 0.07);
    border-radius: 30px;
    height: 8px;
    margin: 18px 0 6px;
    overflow: hidden;
}
.nt-exp-bar {
    height: 100%;
    border-radius: 30px;
    background: linear-gradient(90deg, #003087, #0056b3);
    transition: width 0.8s ease;
}
.nt-cta-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, #fb5518, #ff8a50);
    color: #fff;
    border: none;
    border-radius: 13px;
    padding: 12px;
    font-size: 0.88rem;
    font-weight: 800;
    text-decoration: none;
    margin-top: 22px;
    transition: all 0.22s;
    letter-spacing: 0.2px;
}
.nt-cta-btn:hover {
    background: linear-gradient(135deg, #e04a10, #fb5518);
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(251, 85, 24, 0.3);
}
.nt-empty { text-align: center; padding: 40px 20px; }
.nt-empty-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #e8eeff, #dce8ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #003087;
    margin: 0 auto 16px;
}
.nt-empty h5 { font-weight: 800; color: #001a4d; font-size: 1rem; }
.nt-empty p  { font-size: 0.8rem; color: #7a8ab0; margin-bottom: 16px; }

/* ══════════════════════════════════════════════════════════════
   SETTINGS PAGE
══════════════════════════════════════════════════════════════ */
.nt-settings-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
}
@media (max-width: 900px) { .nt-settings-grid { grid-template-columns: 1fr; } }

/* API Key Box */
.nt-api-key-box {
    background: linear-gradient(135deg, #f0f4ff, #e8eeff);
    border: 1.5px solid rgba(0, 48, 135, 0.12);
    border-radius: 14px;
    padding: 18px 20px;
    margin-bottom: 20px;
}
.nt-api-key-box label {
    font-size: 0.72rem;
    font-weight: 700;
    color: #003087;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: block;
    margin-bottom: 10px;
}
.nt-api-key-input-wrap { display: flex; gap: 10px; align-items: center; }
.nt-api-key-input-wrap input {
    flex: 1;
    background: #fff;
    border: 1.5px solid rgba(0, 48, 135, 0.15);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 0.88rem;
    font-family: 'Outfit', monospace;
    color: #001a4d;
    font-weight: 600;
    outline: none;
    transition: border-color 0.2s;
}
.nt-api-key-input-wrap input:focus {
    border-color: #003087;
    box-shadow: 0 0 0 3px rgba(0, 48, 135, 0.1);
}
.nt-copy-btn {
    background: #003087;
    color: #fff;
    border: none;
    border-radius: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 15px;
    transition: background 0.2s, transform 0.1s;
    flex-shrink: 0;
}
.nt-copy-btn:hover { background: #001a4d; transform: scale(1.05); }

/* Status badge */
.nt-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.nt-status-pill.connected    { background: linear-gradient(135deg, #d4f1de, #c8f0d5); color: #0d6e30; border: 1px solid #a3e4b4; }
.nt-status-pill.disconnected { background: linear-gradient(135deg, #ffe5e5, #ffdbdb); color: #b91c1c; border: 1px solid #fca5a5; }

.nt-status-dot { width: 8px; height: 8px; border-radius: 50%; animation: ntPulse 2s infinite; }
.connected    .nt-status-dot { background: #16a34a; }
.disconnected .nt-status-dot { background: #dc2626; }

@keyframes ntPulse {
    0%   { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.5); }
    70%  { box-shadow: 0 0 0 7px rgba(22, 163, 74, 0); }
    100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}

/* Primary button */
.nt-btn-primary {
    background: linear-gradient(135deg, #003087, #0056b3);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 11px 22px;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    text-decoration: none;
    letter-spacing: 0.2px;
}
.nt-btn-primary:hover {
    background: linear-gradient(135deg, #001a4d, #003087);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 48, 135, 0.3);
    color: #fff;
}

/* Divider */
.nt-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 22px 0;
    color: #b0b9d4;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.nt-divider::before { content: ''; flex: 1; height: 1px; background: linear-gradient(90deg, transparent, rgba(0,48,135,0.12)); }
.nt-divider::after  { content: ''; flex: 1; height: 1px; background: linear-gradient(90deg, rgba(0,48,135,0.12), transparent); }

/* SSO buttons */
.nt-sso-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.nt-sso-btn {
    background: #f5f7ff;
    border: 1.5px solid rgba(0, 48, 135, 0.1);
    border-radius: 14px;
    padding: 14px 12px;
    text-align: center;
    text-decoration: none;
    color: #001a4d;
    font-weight: 700;
    font-size: 0.8rem;
    transition: all 0.25s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
.nt-sso-btn .nt-sso-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    transition: transform 0.2s;
}
.nt-sso-btn:hover {
    background: linear-gradient(135deg, #003087, #0056b3);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 48, 135, 0.2);
    text-decoration: none;
}
.nt-sso-btn:hover .nt-sso-icon { transform: scale(1.1); }

/* Settings rows */
.nt-setting-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 48, 135, 0.06);
    gap: 16px;
}
.nt-setting-row:last-child  { border-bottom: none; padding-bottom: 0; }
.nt-setting-row:first-child { padding-top: 0; }

.nt-setting-info { flex: 1; min-width: 0; }
.nt-setting-info strong { display: block; font-size: 0.875rem; font-weight: 700; color: #001a4d; margin-bottom: 2px; }
.nt-setting-info small  { font-size: 0.75rem; color: #7a8ab0; line-height: 1.4; }

/* Toggle switch */
.nt-toggle { position: relative; width: 48px; height: 26px; flex-shrink: 0; }
.nt-toggle input { opacity: 0; width: 0; height: 0; position: absolute; }
.nt-toggle-slider {
    position: absolute;
    inset: 0;
    background: #d1d9ec;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}
.nt-toggle-slider::before {
    content: '';
    position: absolute;
    width: 20px; height: 20px;
    left: 3px; top: 3px;
    background: #fff;
    border-radius: 50%;
    transition: 0.3s;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.nt-toggle input:checked + .nt-toggle-slider { background: linear-gradient(135deg, #003087, #0056b3); }
.nt-toggle input:checked + .nt-toggle-slider::before { transform: translateX(22px); }

/* Setting input */
.nt-setting-input {
    background: #f0f4ff;
    border: 1.5px solid rgba(0, 48, 135, 0.1);
    border-radius: 10px;
    padding: 8px 12px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #001a4d;
    width: 130px;
    outline: none;
    font-family: 'Outfit', sans-serif;
    transition: border-color 0.2s, box-shadow 0.2s;
    flex-shrink: 0;
}
.nt-setting-input:focus {
    border-color: #003087;
    box-shadow: 0 0 0 3px rgba(0, 48, 135, 0.1);
    background: #fff;
}

/* Section label */
.nt-section-label {
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #003087;
    background: linear-gradient(135deg, #e8eeff, #f0f4ff);
    border-radius: 8px;
    padding: 5px 12px;
    display: inline-block;
    margin-bottom: 4px;
    margin-top: 6px;
}

/* Info chip */
.nt-info-chip {
    font-size: 0.72rem;
    background: rgba(251, 85, 24, 0.08);
    color: #fb5518;
    border: 1px solid rgba(251, 85, 24, 0.2);
    border-radius: 20px;
    padding: 3px 10px;
    font-weight: 700;
}

/* ══════════════════════════════════════════════════════════════
   CARD GRID PAGES  (photocards & opinions — shared classes)
══════════════════════════════════════════════════════════════ */
.nt-pc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
}

/* Individual Card */
.nt-pc-card {
    background: #fff;
    border-radius: 8px;
    border: 1px solid rgba(0, 48, 135, 0.08);
    box-shadow: 0 3px 16px rgba(0, 48, 135, 0.07);
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
    position: relative;
}
.nt-pc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 48, 135, 0.13);
}

/* Thumbnail */
.nt-pc-thumb-wrap { position: relative; }
.nt-pc-thumb {
    width: 100%;
    height:auto;
    object-fit: cover;
}

/* Unlocked badge */
.nt-badge-unlocked {
    position: absolute;
    top: 10px; right: 10px;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.4px;
}

/* Locked overlay */
.nt-locked-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
}
.nt-locked-overlay i {
    font-size: 17px;
    color: #ffffff;
    height: 35px;
    line-height: 31px;
    width: 35px;
    text-align: center;
    display: inline-block;
    border: 2px solid white;
    background: red;
    border-radius: 100%;
    box-shadow: 0 0 8px 1px #00000061;
}

/* Card body */
.nt-pc-body { padding: 14px 16px 16px; }
.nt-pc-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: #001a4d;
    text-align: center;
    margin-bottom: 11px;
    text-transform: uppercase;
}

/* Action buttons */
.nt-pc-btn {
    display: block;
    width: 100%;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    padding: 9px;
    font-size: 0.78rem;
    font-weight: 700;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}
/* Photocard — blue */
.nt-pc-btn.open-blue {
    background: linear-gradient(135deg, #003087, #0056b3);
    color: #fff;
}
.nt-pc-btn.open-blue:hover {
    background: linear-gradient(135deg, #001a4d, #003087);
    transform: translateY(-1px);
    box-shadow: 0 5px 16px rgba(0, 48, 135, 0.3);
    color: #fff;
    text-decoration: none;
}
/* Opinion — purple */
.nt-pc-btn.open-purple {
    background: linear-gradient(135deg, #6a1b9a, #9c27b0);
    color: #fff;
}
.nt-pc-btn.open-purple:hover {
    background: linear-gradient(135deg, #4a0072, #6a1b9a);
    transform: translateY(-1px);
    box-shadow: 0 5px 16px rgba(106, 27, 154, 0.3);
    color: #fff;
    text-decoration: none;
}
/* Upgrade — orange */
.nt-pc-btn.upgrade {
    background: linear-gradient(135deg, #fff3e8, #ffead8);
    color: #fb5518;
    border: 1.5px solid rgba(251, 85, 24, 0.2);
}
.nt-pc-btn.upgrade:hover {
    background: linear-gradient(135deg, #fb5518, #ff8a50);
    color: #fff;
    text-decoration: none;
    border-color: transparent;
}
/* Thumbnail — teal */
.nt-pc-btn.open-teal {
    background: linear-gradient(135deg, #0f766e, #14b8a6);
    color: #fff;
}
.nt-pc-btn.open-teal:hover {
    background: linear-gradient(135deg, #064e3b, #0f766e);
    transform: translateY(-1px);
    box-shadow: 0 5px 16px rgba(15, 118, 110, 0.3);
    color: #fff;
    text-decoration: none;
}
/* Video Frame — red */
.nt-pc-btn.open-red {
    background: linear-gradient(135deg, #b91c1c, #ef4444);
    color: #fff;
}
.nt-pc-btn.open-red:hover {
    background: linear-gradient(135deg, #7f1d1d, #b91c1c);
    transform: translateY(-1px);
    box-shadow: 0 5px 16px rgba(185, 28, 28, 0.3);
    color: #fff;
    text-decoration: none;
}

/* Locked card — slightly dimmed */
.nt-pc-card.is-locked { opacity: 0.85; }

/* Section heading row */
.nt-section-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.nt-section-head h3 {
    font-size: 0.88rem;
    font-weight: 800;
    color: #001a4d;
    margin: 0;
}

/* Count badges */
.nt-count-badge {
    font-size: 0.7rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 20px;
}
.nt-count-badge.green  { background: rgba(22, 163, 74, 0.1);  color: #16a34a; }
.nt-count-badge.purple { background: rgba(106, 27, 154, 0.1); color: #6a1b9a; }
.nt-count-badge.orange { background: rgba(251, 85, 24, 0.1);  color: #fb5518; }
.nt-count-badge.teal   { background: rgba(15, 118, 110, 0.1); color: #0f766e; }
.nt-count-badge.red    { background: rgba(185, 28, 28, 0.1);  color: #b91c1c; }

/* Brand Assets Settings */
.nt-brand-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}
.nt-asset-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px 14px;
    text-align: center;
    transition: all 0.3s;
}
.nt-asset-box:hover {
    border-color: #cbd5e1;
    background: #f1f5f9;
}
.nt-asset-box.dark {
    background: #1e293b;
    border-color: #334155;
}
.nt-asset-box.dark p { color: rgba(255,255,255,0.7) !important; font-size: 0.75rem; font-weight: 700; margin-bottom: 12px; }
.nt-asset-box p { font-size: 0.75rem; font-weight: 700; color: #4a5a88; margin-bottom: 12px; margin-top: 0; }

.nt-asset-preview {
    width: 100%;
    height: 70px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.nt-asset-box.dark .nt-asset-preview {
    background: rgba(255,255,255,0.05);
}
.nt-asset-preview img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}
.nt-asset-preview i {
    font-size: 24px;
    color: #cbd5e1;
}

.nt-upload-btn {
    display: inline-block;
    padding: 6px 20px;
    background: #fff;
    border: 1.5px solid #003087;
    color: #003087;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}
.nt-upload-btn:hover {
    background: #003087;
    color: #fff;
}
.nt-asset-box.dark .nt-upload-btn {
    background: transparent;
    border-color: rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.7);
}
.nt-asset-box.dark .nt-upload-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.4);
}

.nt-social-input-group {
    margin-bottom: 15px;
}
.nt-social-input-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #4a5a88;
    margin-bottom: 6px;
}
.nt-social-wrap {
    display: flex;
    align-items: center;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}
.nt-social-prefix {
    padding: 0 12px;
    font-size: 0.75rem;
    color: #7a8ab0;
    background: #f1f5f9;
    height: 40px;
    display: flex;
    align-items: center;
    border-right: 1px solid #e2e8f0;
}
.nt-social-wrap input {
    flex: 1;
    border: none !important;
    background: transparent !important;
    height: 40px !important;
    padding: 0 12px !important;
    font-size: 0.85rem;
    font-weight: 600;
    color: #001a4d;
    box-shadow: none !important;
    margin: 0 !important;
}
