/* Confmonit Central — tema tecnológico */
:root {
    --bg-0: #050a12;
    --bg-1: #0a1628;
    --bg-2: #0f2138;
    --panel: rgba(12, 28, 48, 0.72);
    --panel-solid: #0c1c30;
    --line: rgba(34, 211, 238, 0.22);
    --line-strong: rgba(34, 211, 238, 0.45);
    --cyan: #22d3ee;
    --cyan-dim: #0891b2;
    --mint: #34d399;
    --text: #e8f4ff;
    --text-dim: #8aa4bf;
    --danger: #f87171;
    --warn: #fbbf24;
    --radius: 14px;
    --font-display: "Orbitron", sans-serif;
    --font-body: "Rajdhani", sans-serif;
    --glow: 0 0 24px rgba(34, 211, 238, 0.18);
    --glow-strong: 0 0 32px rgba(34, 211, 238, 0.35);
}

html, body {
    min-height: 100%;
}

body.shell-tech {
    margin: 0;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.02em;
    background:
        radial-gradient(1200px 600px at 10% -10%, rgba(34, 211, 238, 0.16), transparent 55%),
        radial-gradient(900px 500px at 90% 0%, rgba(52, 211, 153, 0.1), transparent 50%),
        linear-gradient(180deg, var(--bg-1) 0%, var(--bg-0) 100%);
    background-attachment: fixed;
}

body.shell-tech::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.35;
    background-image:
        linear-gradient(rgba(34, 211, 238, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 211, 238, 0.06) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}

/* Grade fica atrás; conteúdo sobe sem criar stacking que engole o menu */
body.shell-tech > * {
    position: relative;
    z-index: 1;
}

body.shell-tech > *.tech-page,
body.shell-tech > div {
    z-index: auto;
}

/* Tipografia */
.tech-title {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: linear-gradient(90deg, #fff 0%, var(--cyan) 55%, var(--mint) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.tech-subtitle {
    font-family: var(--font-display);
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--cyan);
    opacity: 0.85;
}

/* Painéis (opacos — sem “ver através”) */
.tech-panel {
    background: var(--panel-solid);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

.tech-panel-head {
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--cyan);
    background: linear-gradient(90deg, rgba(8, 145, 178, 0.25), rgba(15, 33, 56, 0.9) 40%, rgba(8, 145, 178, 0.25));
    border-bottom: 1px solid var(--line);
}

.tech-panel-body {
    padding: 0.75rem;
}

/* Workspace: listagem (esq) + cadastro (dir) */
.tech-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #07111d;
}

/* Só telas com listagem+cadastro travam a altura e rolam na grid */
.tech-page:has(.tech-workspace) {
    height: 100vh;
    max-height: 100vh;
    overflow: hidden;
}

.tech-workspace {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 0.85rem;
    min-height: 0;
    height: calc(100vh - 4.25rem);
    max-height: calc(100vh - 4.25rem);
    overflow: hidden;
}

@media (min-width: 768px) {
    .tech-workspace {
        flex-direction: row;
        align-items: stretch;
    }
}

.tech-col-list,
.tech-col-form {
    display: flex;
    flex-direction: column;
    min-height: 0;
    height: 100%;
    max-height: 100%;
}

.tech-col-list { flex: 1.15; }
.tech-col-form { flex: 0.85; }

.tech-col-list > .tech-panel,
.tech-col-form > .tech-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    height: 100%;
    max-height: 100%;
}

/* Grid: ocupa a altura e rola por dentro */
.tech-col-list .tech-panel-body {
    flex: 1;
    min-height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 0.5rem;
}

.tech-col-form .tech-panel-body {
    flex: 1;
    min-height: 0;
    overflow: auto;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.tech-table-wrap {
    flex: 1;
    min-height: 0;
    height: 100%;
    overflow: auto;
    border: 1px solid rgba(34, 211, 238, 0.12);
    border-radius: 10px;
    background: rgba(5, 12, 22, 0.55);
}

.tech-table-wrap::-webkit-scrollbar,
.tech-col-form .tech-panel-body::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

.tech-table-wrap::-webkit-scrollbar-thumb,
.tech-col-form .tech-panel-body::-webkit-scrollbar-thumb {
    background: rgba(34, 211, 238, 0.35);
    border-radius: 999px;
}

.tech-table-wrap::-webkit-scrollbar-track,
.tech-col-form .tech-panel-body::-webkit-scrollbar-track {
    background: rgba(5, 12, 22, 0.6);
}

.tech-table thead th {
    position: sticky;
    top: 0;
    z-index: 2;
    background: #0f2138 !important;
}

.tech-section-label {
    font-family: var(--font-display);
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin: 0.35rem 0 0.15rem;
}

.tech-form-block {
    border: 1px solid rgba(34, 211, 238, 0.12);
    border-radius: 10px;
    padding: 0.65rem;
    background: rgba(5, 12, 22, 0.35);
}

.tech-form-block > h3 {
    margin: 0 0 0.55rem;
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--cyan);
    text-align: center;
}

body.shell-tech label {
    color: var(--text-dim);
    font-weight: 600;
    font-size: 0.92rem;
}

/* Navbar — acima dos painéis/groups */
#navbar.tech-nav {
    position: relative;
    z-index: 9999;
    height: 4.25rem;
    overflow: visible;
    background: #050a12;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45), 0 1px 0 rgba(34, 211, 238, 0.15);
}

#navbar.tech-nav .nav-brand {
    font-family: var(--font-display);
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    min-width: 12rem;
}

#navbar.tech-nav .nav-brand i {
    color: var(--cyan);
    filter: drop-shadow(0 0 8px rgba(34, 211, 238, 0.7));
    animation: techPulse 2.8s ease-in-out infinite;
}

#navbar.tech-nav .nav-link,
#navbar.tech-nav .nav-drop-btn,
#navbar.tech-nav .nav-mobile-group {
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.82rem;
    color: var(--text);
    border-radius: 8px;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

#navbar.tech-nav .nav-link:hover,
#navbar.tech-nav .nav-drop-btn:hover,
#navbar.tech-nav .nav-mobile-group:hover {
    background: rgba(34, 211, 238, 0.12);
    color: var(--cyan);
}

#navbar.tech-nav .nav-link.bg-green-700,
#navbar.tech-nav .nav-drop-btn.bg-green-800 {
    background: rgba(34, 211, 238, 0.18) !important;
    color: var(--cyan) !important;
    box-shadow: inset 0 0 0 1px var(--line-strong), var(--glow);
}

#navbar.tech-nav .nav-dropdown {
    position: relative;
}

#navbar.tech-nav .nav-drop-panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 240px;
    padding: 0.45rem 0;
    background: #081220;
    border: 1px solid var(--line-strong);
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55), var(--glow-strong);
    z-index: 10000;
}

/* Seta indicando que o menu abre para baixo */
#navbar.tech-nav .nav-drop-panel::before {
    content: "";
    position: absolute;
    top: -7px;
    left: 22px;
    width: 12px;
    height: 12px;
    background: rgba(8, 18, 32, 0.98);
    border-left: 1px solid var(--line-strong);
    border-top: 1px solid var(--line-strong);
    transform: rotate(45deg);
}

#navbar.tech-nav .nav-drop-panel .nav-drop-caption {
    padding: 0.4rem 1rem 0.3rem;
    margin: 0 0 0.15rem;
    border: none;
    border-bottom: 1px dashed rgba(75, 100, 122, 0.35);
    pointer-events: none;
    cursor: default;
    user-select: none;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #4b647a;
    opacity: 0.7;
}

#navbar.tech-nav .nav-drop-panel .nav-link {
    display: block;
    padding: 0.7rem 1rem;
    border-radius: 0;
    line-height: 1.2;
}

#navbar.tech-nav .nav-drop-panel .nav-link small {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.75rem;
    letter-spacing: 0.02em;
    text-transform: none;
    color: var(--text-dim);
    font-family: var(--font-body);
    font-weight: 500;
}

#navbar.tech-nav .nav-logout {
    border: 1px solid var(--line-strong);
    color: var(--cyan);
    border-radius: 999px;
    padding: 0.45rem 1.25rem;
    font-family: var(--font-display);
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s, box-shadow 0.2s;
}

#navbar.tech-nav .nav-logout:hover {
    background: rgba(34, 211, 238, 0.15);
    box-shadow: var(--glow);
}

#menuIntens {
    position: relative;
    z-index: 10000;
    background: #050a12 !important;
    border-top: 1px solid var(--line) !important;
}

/* Inputs / botões globais nas telas autenticadas */
body.shell-tech input,
body.shell-tech select,
body.shell-tech textarea {
    background: rgba(5, 12, 22, 0.85) !important;
    border: 1px solid var(--line) !important;
    color: var(--text) !important;
    border-radius: 10px !important;
    outline: none;
}

body.shell-tech input::placeholder,
body.shell-tech textarea::placeholder {
    color: var(--text-dim);
}

body.shell-tech input:focus,
body.shell-tech select:focus,
body.shell-tech textarea:focus {
    border-color: var(--cyan) !important;
    box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.15);
}

/* Botões — borda + hover (sem fundo sólido “chapado”) */
body.shell-tech button,
body.shell-tech .btn {
    border-radius: 10px;
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.15s ease, color 0.18s ease;
}

body.shell-tech button#btnLimpar,
body.shell-tech button.tech-btn-danger,
body.shell-tech button.bg-red-700 {
    background: transparent !important;
    border: 1px solid #f87171 !important;
    color: #f87171 !important;
    box-shadow: none;
}

body.shell-tech button#btnLimpar:hover,
body.shell-tech button.tech-btn-danger:hover,
body.shell-tech button.bg-red-700:hover {
    background: rgba(248, 113, 113, 0.16) !important;
    border-color: #fca5a5 !important;
    color: #fecaca !important;
    box-shadow: 0 0 18px rgba(248, 113, 113, 0.28);
    transform: translateY(-1px);
}

body.shell-tech button#btnGravar,
body.shell-tech button.tech-btn-success,
body.shell-tech button.bg-green-700 {
    background: transparent !important;
    border: 1px solid #34d399 !important;
    color: #34d399 !important;
    box-shadow: none;
}

body.shell-tech button#btnGravar:hover,
body.shell-tech button.tech-btn-success:hover,
body.shell-tech button.bg-green-700:hover {
    background: rgba(52, 211, 153, 0.16) !important;
    border-color: #6ee7b7 !important;
    color: #a7f3d0 !important;
    box-shadow: 0 0 18px rgba(52, 211, 153, 0.28);
    transform: translateY(-1px);
}

body.shell-tech button#btnFechar,
body.shell-tech button.tech-btn-info,
body.shell-tech button.bg-blue-700 {
    background: transparent !important;
    border: 1px solid #38bdf8 !important;
    color: #38bdf8 !important;
    box-shadow: none;
}

body.shell-tech button#btnFechar:hover,
body.shell-tech button.tech-btn-info:hover,
body.shell-tech button.bg-blue-700:hover {
    background: rgba(56, 189, 248, 0.16) !important;
    border-color: #7dd3fc !important;
    color: #bae6fd !important;
    box-shadow: 0 0 18px rgba(56, 189, 248, 0.28);
    transform: translateY(-1px);
}

body.shell-tech .tech-btn-primary {
    background: transparent !important;
    color: var(--cyan) !important;
    border: 1px solid var(--line-strong) !important;
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: none;
}

body.shell-tech .tech-btn-primary:hover {
    background: rgba(34, 211, 238, 0.14) !important;
    border-color: var(--cyan) !important;
    color: #a5f3fc !important;
    box-shadow: var(--glow);
    transform: translateY(-1px);
}

body.shell-tech .tech-btn-ghost {
    background: transparent !important;
    color: var(--text);
    border: 1px solid var(--line);
    border-radius: 10px;
}

body.shell-tech .tech-btn-ghost:hover {
    background: rgba(34, 211, 238, 0.12) !important;
    border-color: var(--line-strong);
    color: var(--cyan);
    box-shadow: 0 0 14px rgba(34, 211, 238, 0.18);
    transform: translateY(-1px);
}

/* Botões de ação nas grids (ícones) — base */
body.shell-tech td.btn {
    border: 1px solid var(--line);
    background: rgba(8, 20, 36, 0.9);
    color: var(--cyan);
    transition: background 0.18s, border-color 0.18s, color 0.18s, box-shadow 0.18s;
}

body.shell-tech td.btn:hover {
    filter: brightness(1.12);
    box-shadow: 0 0 12px rgba(34, 211, 238, 0.18);
}

/* Estados ativo / inativo (toggle) */
body.shell-tech td.tech-state-on,
body.shell-tech td.btn.tech-state-on {
    background: rgba(52, 211, 153, 0.18) !important;
    border: 1px solid #34d399 !important;
    color: #6ee7b7 !important;
}

body.shell-tech td.tech-state-on i {
    color: #34d399 !important;
}

body.shell-tech td.tech-state-off,
body.shell-tech td.btn.tech-state-off {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: #64748b !important;
}

body.shell-tech td.tech-state-off i {
    color: #64748b !important;
    opacity: 0.75;
}

body.shell-tech td.tech-state-on:hover {
    background: rgba(52, 211, 153, 0.28) !important;
    box-shadow: 0 0 14px rgba(52, 211, 153, 0.3);
}

body.shell-tech td.tech-state-off:hover {
    background: rgba(100, 116, 139, 0.12) !important;
    border: none !important;
    box-shadow: none !important;
    color: #94a3b8 !important;
}

/* Ações fixas na grid */
body.shell-tech td.tech-action-edit {
    border-color: #38bdf8 !important;
    color: #38bdf8 !important;
    background: rgba(56, 189, 248, 0.12) !important;
}

body.shell-tech td.tech-action-key {
    border-color: #fbbf24 !important;
    color: #fbbf24 !important;
    background: rgba(251, 191, 36, 0.12) !important;
}

body.shell-tech td.tech-action-del {
    border-color: #f87171 !important;
    color: #f87171 !important;
    background: rgba(248, 113, 113, 0.12) !important;
}

/* Linha de registro desativado */
body.shell-tech tr.tech-row-off td:first-child {
    color: #94a3b8;
    opacity: 0.75;
}

body.shell-tech tr.tech-row-off td:first-child::before {
    content: "● ";
    color: #f87171;
}

body.shell-tech tr.tech-row-on td:first-child::before {
    content: "● ";
    color: #34d399;
}

/* Tabelas */
body.shell-tech table,
body.shell-tech .tech-table {
    color: var(--text);
    border-collapse: separate;
    border-spacing: 0 4px;
    background: transparent !important;
}

body.shell-tech thead th,
body.shell-tech .tech-table thead th {
    font-family: var(--font-display);
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cyan);
    padding: 0.65rem 0.5rem;
    background: #0f2138 !important;
}

body.shell-tech tbody,
body.shell-tech .tech-table tbody {
    background: transparent !important;
}

body.shell-tech tbody tr,
body.shell-tech .tech-table tbody tr {
    background: rgba(8, 20, 36, 0.75);
}

body.shell-tech tbody td,
body.shell-tech .tech-table tbody td {
    padding: 0.45rem 0.55rem;
    border-top: 1px solid rgba(34, 211, 238, 0.08);
    border-bottom: 1px solid rgba(34, 211, 238, 0.08);
}

body.shell-tech tbody tr:hover,
body.shell-tech .tech-table tbody tr:hover {
    background: rgba(34, 211, 238, 0.08);
}

body.shell-tech .bg-green-100,
body.shell-tech .bg-green-200,
body.shell-tech .bg-green-950 {
    background-color: transparent !important;
}

/* Home */
.tech-home {
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 4.25rem);
    padding: 1rem 1.1rem 2rem;
    background: #07111d;
}

.tech-home-hero {
    text-align: center;
    margin: 0.5rem 0 1.25rem;
    animation: techFadeUp 0.7s ease both;
}

.tech-home-hero h1 {
    margin: 0.35rem 0 0;
    font-size: clamp(1.4rem, 3vw, 2.1rem);
}

.tech-grid {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.tech-row {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    animation: techFadeUp 0.75s ease both;
}

.tech-row:nth-child(2) { animation-delay: 0.08s; }
.tech-row:nth-child(3) { animation-delay: 0.16s; }

@media (min-width: 768px) {
    .tech-row {
        flex-direction: row;
        min-height: 280px;
    }
}

.tech-scroll {
    max-height: 220px;
    overflow: auto;
}

.tech-scroll::-webkit-scrollbar {
    width: 8px;
}

.tech-scroll::-webkit-scrollbar-thumb {
    background: rgba(34, 211, 238, 0.35);
    border-radius: 999px;
}

/* Login / Administrator */
.tech-login {
    min-height: 100vh;
    display: flex;
    background: var(--bg-0);
}

.tech-login-visual {
    display: none;
    position: relative;
    flex: 1.4;
    overflow: hidden;
}

@media (min-width: 768px) {
    .tech-login-visual { display: block; }
}

.tech-login-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.7) contrast(1.1) brightness(0.55);
    transform: scale(1.04);
    animation: techKenBurns 18s ease-in-out infinite alternate;
}

.tech-login-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent 40%, rgba(5, 10, 18, 0.95) 100%),
        linear-gradient(180deg, rgba(8, 145, 178, 0.18), transparent 45%, rgba(5, 10, 18, 0.55));
}

.tech-login-visual .tech-scan {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(transparent 0%, rgba(34, 211, 238, 0.12) 50%, transparent 100%);
    background-size: 100% 220%;
    animation: techScan 4.5s linear infinite;
}

.tech-login-form {
    width: 100%;
    max-width: 460px;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background:
        radial-gradient(500px 300px at 80% 10%, rgba(34, 211, 238, 0.12), transparent 60%),
        linear-gradient(180deg, #07111d, #050a12);
}

@media (min-width: 768px) {
    .tech-login-form { width: 38%; max-width: none; }
}

.tech-login-card {
    width: 100%;
    max-width: 380px;
    padding: 1.75rem 1.4rem;
    border-radius: 18px;
    border: 1px solid var(--line-strong);
    background: rgba(10, 22, 40, 0.78);
    backdrop-filter: blur(18px);
    box-shadow: var(--glow-strong), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    animation: techFadeUp 0.65s ease both;
}

.tech-login-card .tech-icon {
    font-size: 5.5rem;
    line-height: 1;
    color: var(--cyan);
    filter: drop-shadow(0 0 18px rgba(34, 211, 238, 0.55));
    animation: techPulse 2.8s ease-in-out infinite;
}

.tech-login-card h1 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
}

.tech-login-card p {
    margin: 0;
    color: var(--text-dim);
    text-align: center;
    font-size: 0.95rem;
}

.tech-login-card input {
    width: 100%;
    padding: 0.85rem 1rem;
    text-align: center;
}

.tech-login-card .tech-btn-primary {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 12px;
    font-size: 1rem;
    cursor: pointer;
}

/* Fundos legados só em containers — NÃO em botões */
body.shell-tech div.bg-zinc-300,
body.shell-tech div.bg-green-100,
body.shell-tech div.bg-zinc-200,
body.shell-tech section.bg-zinc-300 {
    background-color: var(--panel-solid) !important;
}

body.shell-tech div.bg-zinc-400,
body.shell-tech div.bg-zinc-600,
body.shell-tech div.bg-green-900,
body.shell-tech div.bg-green-950,
body.shell-tech div.bg-green-800,
body.shell-tech section.bg-zinc-400,
body.shell-tech section.bg-zinc-600 {
    background-color: var(--panel-solid) !important;
}

body.shell-tech .border-zinc-600,
body.shell-tech .border-green-800 {
    border-color: var(--line) !important;
}

body.shell-tech .text-slate-700 {
    color: var(--text) !important;
}

@keyframes techFadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes techPulse {
    0%, 100% { filter: drop-shadow(0 0 8px rgba(34, 211, 238, 0.45)); }
    50% { filter: drop-shadow(0 0 16px rgba(34, 211, 238, 0.9)); }
}

@keyframes techScan {
    0% { background-position: 0% -40%; }
    100% { background-position: 0% 140%; }
}

@keyframes techKenBurns {
    from { transform: scale(1.02) translateY(0); }
    to { transform: scale(1.08) translateY(-1.5%); }
}

/* Dropdown helpers */
.nav-dropdown .nav-drop-panel { z-index: 10000; }
.nav-dropdown .nav-drop-btn {
    cursor: pointer;
    background: transparent;
    border: none;
    color: inherit;
    font: inherit;
}
