﻿:root {
    --bg: #f4f7fc;
    --card: rgba(255, 255, 255, 0.82);
    --card-hover: rgba(255, 255, 255, 0.92);
    --border: rgba(15, 23, 42, 0.08);
    --border-strong: rgba(15, 23, 42, 0.12);
    --text: #0f172a;
    --text-secondary: #334155;
    --muted: #64748b;
    --brand: #0b5cab;
    --brand-light: rgba(11, 92, 171, 0.12);
    --brand2: #14b8a6;
    --brand2-light: rgba(20, 184, 166, 0.12);
    --danger: #dc2626;
    --danger-light: rgba(220, 38, 38, 0.08);
    --success: #059669;
    --success-light: rgba(5, 150, 105, 0.1);
    --shadow-sm: 0 2px 8px rgba(2, 6, 23, 0.04);
    --shadow: 0 8px 32px rgba(2, 6, 23, 0.08);
    --shadow-lg: 0 20px 60px rgba(2, 6, 23, 0.12);
    --shadow-glow: 0 0 40px rgba(11, 92, 171, 0.15);
    --radius: 20px;
    --radius-sm: 12px;
    --radius-xs: 8px;
    --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--bg);
    font-family: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html[dir="rtl"] body {
    font-family: 'Tajawal', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1120px;
    margin-inline: auto;
    padding: 24px;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(244, 247, 252, 0.75);
    border-block-end: 1px solid var(--border);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 24px;
    max-width: 1120px;
    margin-inline: auto;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    transition: opacity var(--transition);
}

    .brand:hover {
        opacity: 0.85;
    }

    .brand img {
        height: 60px;
        width: auto;
        display: block;
    }

    .brand .title {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

        .brand .title strong {
            font-size: 15px;
            font-weight: 700;
            letter-spacing: 0.2px;
        }

        .brand .title span {
            font-size: 12px;
            color: var(--muted);
        }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.7);
    box-shadow: var(--shadow-sm);
    font-size: 13px;
    font-weight: 600;
    transition: all var(--transition);
    cursor: pointer;
}

    .pill:hover {
        background: rgba(255, 255, 255, 0.9);
        transform: translateY(-1px);
        box-shadow: var(--shadow);
    }

    .pill:focus-visible {
        outline: 2px solid var(--brand);
        outline-offset: 2px;
    }

    .pill small {
        color: var(--muted);
    }

.lang-toggle {
    display: flex;
    gap: 4px;
    background: rgba(255, 255, 255, 0.5);
    padding: 4px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

    .lang-toggle button {
        border: 1px solid transparent;
        background: transparent;
        padding: 8px 12px;
        border-radius: var(--radius-xs);
        cursor: pointer;
        font-weight: 600;
        font-size: 12px;
        color: var(--muted);
        transition: all var(--transition);
    }

        .lang-toggle button:hover {
            background: rgba(255, 255, 255, 0.8);
            color: var(--text);
        }

        .lang-toggle button:focus-visible {
            outline: 2px solid var(--brand);
            outline-offset: 1px;
        }

        .lang-toggle button.active {
            background: var(--brand);
            color: #fff;
            border-color: var(--brand);
        }

.hero {
    margin-block-start: 32px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.hero-single {
    grid-template-columns: 1fr;
    max-width: 640px;
    margin-inline: auto;
}

@media (max-width: 960px) {
    .hero {
        grid-template-columns: 1fr;
    }
}

.card {
    position: relative;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all var(--transition);
}

    .card::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: var(--radius);
        padding: 1px;
        background: linear-gradient(135deg, rgba(255,255,255,0.6), rgba(255,255,255,0.1));
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
    }

.hero-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(255,255,255,0.75));
}

    .hero-card:hover {
        box-shadow: var(--shadow-lg), var(--shadow-glow);
    }

.card-inner {
    padding: 28px;
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--brand);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 16px;
    background: var(--brand-light);
    border-radius: 999px;
    border: 1px solid rgba(11, 92, 171, 0.15);
}

.kicker-center {
    justify-content: center;
}

.hero-header {
    margin-bottom: 24px;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 16px 0 0;
}

.title-line {
    display: block;
    font-weight: 800;
    line-height: 1.2;
}

.title-gradient {
    font-size: clamp(26px, 4.5vw, 38px);
    background: linear-gradient(135deg, var(--brand) 0%, #1e40af 50%, var(--brand2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-accent {
    font-size: clamp(20px, 3vw, 28px);
    color: var(--text-secondary);
    font-weight: 600;
}

.hero-content {
    margin-bottom: 24px;
}

.hero-desc-box {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(11, 92, 171, 0.06) 0%, rgba(20, 184, 166, 0.04) 100%);
    border-radius: var(--radius);
    border-inline-start: 4px solid;
    border-image: linear-gradient(180deg, var(--brand), var(--brand2)) 1;
    position: relative;
}

.desc-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand), var(--brand2));
    border-radius: 12px;
    color: #fff;
}

.desc-text {
    flex: 1;
}

.hero-intro {
    margin: 0 0 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--brand);
}

.hero-desc {
    margin: 0;
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-secondary);
}

.h1 {
    font-size: clamp(24px, 4vw, 32px);
    line-height: 1.25;
    margin: 14px 0 12px;
    font-weight: 800;
    color: var(--text);
}

.p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
}

.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-block-start: 20px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.65);
    box-shadow: var(--shadow-sm);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all var(--transition);
}

    .badge:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow);
    }

.badge-ai {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.08));
    border-color: rgba(99, 102, 241, 0.2);
}

    .badge-ai .icon {
        color: #6366f1;
    }

    .badge-ai:hover {
        background: linear-gradient(135deg, rgba(99, 102, 241, 0.18), rgba(139, 92, 246, 0.12));
    }

.badge-uav {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(6, 182, 212, 0.08));
    border-color: rgba(20, 184, 166, 0.2);
}

    .badge-uav .icon {
        color: #14b8a6;
    }

    .badge-uav:hover {
        background: linear-gradient(135deg, rgba(20, 184, 166, 0.18), rgba(6, 182, 212, 0.12));
    }

.badge-trust {
    background: linear-gradient(135deg, rgba(11, 92, 171, 0.1), rgba(59, 130, 246, 0.08));
    border-color: rgba(11, 92, 171, 0.2);
}

    .badge-trust .icon {
        color: #0b5cab;
    }

    .badge-trust:hover {
        background: linear-gradient(135deg, rgba(11, 92, 171, 0.18), rgba(59, 130, 246, 0.12));
    }

.badge-vision {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(16, 185, 129, 0.08));
    border-color: rgba(34, 197, 94, 0.2);
}

    .badge-vision .icon {
        color: #22c55e;
    }

    .badge-vision:hover {
        background: linear-gradient(135deg, rgba(34, 197, 94, 0.18), rgba(16, 185, 129, 0.12));
    }

.badge .icon {
    flex-shrink: 0;
}

.side-card .meta {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-block-start: 16px;
}

.meta-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

    .meta-row:hover {
        background: rgba(255, 255, 255, 0.8);
    }

    .meta-row .icon {
        color: var(--brand2);
        flex-shrink: 0;
        margin-block-start: 2px;
    }

    .meta-row strong {
        display: block;
        font-weight: 700;
        color: var(--text);
        margin-block-end: 2px;
    }

    .meta-row span {
        color: var(--muted);
        font-size: 14px;
    }

.section {
    margin-block-start: 24px;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-block: 28px 16px;
}

    .section-title h2 {
        margin: 0;
        font-size: 20px;
        font-weight: 700;
    }

    .section-title p {
        margin: 4px 0 0;
        color: var(--muted);
        font-size: 14px;
    }

.form-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.92), rgba(255,255,255,0.8));
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 720px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}

.input-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.8);
    border: 1.5px solid var(--border);
    transition: all var(--transition);
}

    .input-wrap .icon {
        color: var(--muted);
        flex-shrink: 0;
        transition: color var(--transition);
    }

    .input-wrap input {
        width: 100%;
        border: 0;
        outline: 0;
        background: transparent;
        font-size: 15px;
        color: var(--text);
        font-family: inherit;
    }

        .input-wrap input::placeholder {
            color: var(--muted);
            opacity: 0.7;
        }

    .input-wrap:hover {
        border-color: var(--border-strong);
    }

    .input-wrap:focus-within {
        border-color: var(--brand);
        box-shadow: 0 0 0 4px var(--brand-light);
        background: #fff;
    }

        .input-wrap:focus-within .icon {
            color: var(--brand);
        }

.actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-block-start: 24px;
}

.actions-center {
    justify-content: center;
    margin-block-start: 28px;
}

.btn {
    border: 1.5px solid transparent;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    font-size: 14px;
    font-family: inherit;
    transition: all var(--transition);
}

    .btn:focus-visible {
        outline: 2px solid var(--brand);
        outline-offset: 2px;
    }

.btn-sm {
    padding: 10px 14px;
    font-size: 13px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand), var(--brand2));
    color: #fff;
    box-shadow: 0 8px 24px rgba(11, 92, 171, 0.3);
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 32px rgba(11, 92, 171, 0.4);
    }

    .btn-primary:active {
        transform: translateY(0);
    }

.btn-ghost {
    background: rgba(255, 255, 255, 0.75);
    border-color: var(--border);
    color: var(--text-secondary);
}

    .btn-ghost:hover {
        background: #fff;
        border-color: var(--border-strong);
        transform: translateY(-1px);
    }

.btn-danger {
    background: var(--danger-light);
    border-color: rgba(220, 38, 38, 0.2);
    color: var(--danger);
}

    .btn-danger:hover {
        background: rgba(220, 38, 38, 0.15);
        border-color: rgba(220, 38, 38, 0.3);
    }

.alert {
    display: none;
    align-items: center;
    gap: 10px;
    margin-block-start: 16px;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    border: 1.5px solid rgba(220, 38, 38, 0.25);
    background: var(--danger-light);
    color: var(--danger);
    font-size: 14px;
    font-weight: 500;
    animation: shake 0.4s ease;
}

    .alert.show {
        display: flex;
    }

    .alert .icon {
        flex-shrink: 0;
    }

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }

    20%, 60% {
        transform: translateX(-4px);
    }

    40%, 80% {
        transform: translateX(4px);
    }
}

.success-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(255,255,255,0.85));
    text-align: center;
}

.success-inner {
    padding: 48px 32px;
}

.success-icon-wrap {
    display: flex;
    justify-content: center;
    margin-block-end: 24px;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--success), var(--brand2));
    position: relative;
    box-shadow: 0 8px 32px rgba(5, 150, 105, 0.3);
    animation: pulse-success 2s ease infinite;
}

    .success-icon::before,
    .success-icon::after {
        content: "";
        position: absolute;
        background: #fff;
        border-radius: 2px;
    }

    .success-icon::before {
        width: 16px;
        height: 4px;
        top: 50%;
        left: 22px;
        transform: rotate(45deg);
    }

    .success-icon::after {
        width: 28px;
        height: 4px;
        top: 46%;
        left: 30px;
        transform: rotate(-45deg);
    }

@keyframes pulse-success {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(5, 150, 105, 0.3);
    }

    50% {
        box-shadow: 0 8px 48px rgba(5, 150, 105, 0.5);
    }
}

.footer {
    margin-block: 32px 16px;
    color: var(--muted);
    font-size: 12px;
    text-align: center;
}

.toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-block-end: 16px;
    border-block-end: 1px solid var(--border);
}

.toolbar-left, .toolbar-right {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--border);
    background: rgba(255, 255, 255, 0.7);
    transition: all var(--transition);
}

    .search-box:focus-within {
        border-color: var(--brand);
        box-shadow: 0 0 0 4px var(--brand-light);
        background: #fff;
    }

    .search-box .icon {
        color: var(--muted);
    }

    .search-box:focus-within .icon {
        color: var(--brand);
    }

    .search-box input {
        border: 0;
        outline: 0;
        background: transparent;
        min-width: 200px;
        font-size: 14px;
        font-family: inherit;
        color: var(--text);
    }

        .search-box input::placeholder {
            color: var(--muted);
        }

.select {
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--border);
    background: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-family: inherit;
    color: var(--text);
    cursor: pointer;
    transition: all var(--transition);
}

    .select:hover {
        border-color: var(--border-strong);
    }

    .select:focus {
        outline: none;
        border-color: var(--brand);
        box-shadow: 0 0 0 4px var(--brand-light);
    }

.table-section {
    margin-block-start: 20px;
}

.table-wrap {
    overflow: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.7);
    box-shadow: var(--shadow-sm);
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

thead {
    position: sticky;
    top: 0;
    z-index: 10;
}

th, td {
    padding: 14px 16px;
    border-block-end: 1px solid var(--border);
    text-align: start;
    font-size: 14px;
}

th {
    background: linear-gradient(to bottom, rgba(248, 250, 252, 1), rgba(241, 245, 249, 1));
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--muted);
}

tbody tr {
    transition: background var(--transition);
}

    tbody tr:nth-child(even) {
        background: rgba(248, 250, 252, 0.5);
    }

    tbody tr:hover {
        background: var(--brand-light);
    }

.empty-state {
    display: none;
    padding: 48px 24px;
    text-align: center;
    color: var(--muted);
    font-size: 15px;
}

    .empty-state.show {
        display: block;
    }

.pager {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-block-start: 16px;
    flex-wrap: wrap;
}

.pager-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
}

.pager-pages {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.page-btn {
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border-radius: var(--radius-xs);
    border: 1.5px solid var(--border);
    background: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    color: var(--text-secondary);
    transition: all var(--transition);
}

    .page-btn:hover:not(:disabled) {
        background: #fff;
        border-color: var(--border-strong);
    }

    .page-btn:focus-visible {
        outline: 2px solid var(--brand);
        outline-offset: 1px;
    }

    .page-btn.active {
        background: var(--brand);
        border-color: var(--brand);
        color: #fff;
    }

    .page-btn:disabled {
        opacity: 0.4;
        cursor: not-allowed;
    }

.icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    position: relative;
    flex-shrink: 0;
}

.icon-user::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    top: 1px;
    left: 50%;
    transform: translateX(-50%);
}

.icon-user::after {
    content: "";
    position: absolute;
    width: 14px;
    height: 8px;
    border-radius: 8px 8px 0 0;
    background: currentColor;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.icon-briefcase::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 10px;
    border: 2px solid currentColor;
    border-radius: 2px;
    bottom: 2px;
    left: 1px;
}

.icon-briefcase::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 3px;
    border: 2px solid currentColor;
    border-bottom: 0;
    border-radius: 2px 2px 0 0;
    top: 3px;
    left: 6px;
}

.icon-building::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 16px;
    border: 2px solid currentColor;
    border-radius: 2px;
    bottom: 0;
    left: 3px;
}

.icon-building::after {
    content: "";
    position: absolute;
    width: 4px;
    height: 4px;
    background: currentColor;
    top: 5px;
    left: 7px;
    box-shadow: 0 6px 0 currentColor;
}

.icon-email::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 12px;
    border: 2px solid currentColor;
    border-radius: 2px;
    bottom: 2px;
    left: 1px;
}

.icon-email::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 6px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(135deg);
    top: 3px;
    left: 4px;
}

.icon-phone::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 16px;
    border: 2px solid currentColor;
    border-radius: 3px;
    top: 1px;
    left: 4px;
}

.icon-phone::after {
    content: "";
    position: absolute;
    width: 4px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    bottom: 3px;
    left: 7px;
}

.icon-check::before {
    content: "";
    position: absolute;
    width: 6px;
    height: 10px;
    border-right: 2.5px solid currentColor;
    border-bottom: 2.5px solid currentColor;
    transform: rotate(45deg);
    top: 2px;
    left: 6px;
}

.icon-check-circle {
    border: 2px solid currentColor;
    border-radius: 50%;
}

    .icon-check-circle::before {
        content: "";
        position: absolute;
        width: 4px;
        height: 7px;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: rotate(45deg);
        top: 3px;
        left: 6px;
    }

.icon-reset::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    top: 3px;
    left: 3px;
}

.icon-reset::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 4px solid currentColor;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    top: 3px;
    left: 11px;
}

.icon-shield::before {
    content: "";
    position: absolute;
    width: 14px;
    height: 16px;
    border: 2px solid currentColor;
    border-radius: 2px 2px 7px 7px;
    top: 1px;
    left: 2px;
}

.icon-home::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 10px;
    border: 2px solid currentColor;
    border-top: 0;
    bottom: 1px;
    left: 3px;
}

.icon-home::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 8px solid currentColor;
    top: 1px;
    left: 0;
}

.icon-table::before {
    content: "";
    position: absolute;
    width: 14px;
    height: 12px;
    border: 2px solid currentColor;
    border-radius: 2px;
    top: 3px;
    left: 2px;
}

.icon-table::after {
    content: "";
    position: absolute;
    width: 14px;
    height: 0;
    border-top: 2px solid currentColor;
    top: 9px;
    left: 2px;
}

.icon-edit::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border: 2px solid currentColor;
    transform: rotate(-45deg);
    top: 2px;
    left: 4px;
}

.icon-search::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border: 2px solid currentColor;
    border-radius: 50%;
    top: 2px;
    left: 2px;
}

.icon-search::after {
    content: "";
    position: absolute;
    width: 5px;
    height: 2px;
    background: currentColor;
    transform: rotate(45deg);
    bottom: 3px;
    right: 2px;
}

.icon-download::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 2px;
    background: currentColor;
    bottom: 2px;
    left: 3px;
}

.icon-download::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid currentColor;
    top: 6px;
    left: 4px;
}

.icon-trash::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 12px;
    border: 2px solid currentColor;
    border-top: 0;
    border-radius: 0 0 2px 2px;
    bottom: 1px;
    left: 4px;
}

.icon-trash::after {
    content: "";
    position: absolute;
    width: 14px;
    height: 2px;
    background: currentColor;
    top: 3px;
    left: 2px;
}

.icon-layers::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 6px;
    border: 2px solid currentColor;
    border-radius: 2px;
    top: 4px;
    left: 3px;
}

.icon-layers::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 0;
    border-top: 2px solid currentColor;
    top: 12px;
    left: 5px;
}

.icon-sparkle::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background: currentColor;
    clip-path: polygon(50% 0%, 61% 35%, 100% 50%, 61% 65%, 50% 100%, 39% 65%, 0% 50%, 39% 35%);
    top: 2px;
    left: 2px;
}

.icon-sparkle::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background: currentColor;
    clip-path: polygon(50% 0%, 61% 35%, 100% 50%, 61% 65%, 50% 100%, 39% 65%, 0% 50%, 39% 35%);
    bottom: 2px;
    right: 2px;
}

.icon-quote::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background: currentColor;
    border-radius: 50% 50% 0 50%;
    top: 2px;
    left: 1px;
}

.icon-quote::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background: currentColor;
    border-radius: 50% 50% 0 50%;
    top: 2px;
    right: 1px;
}

.icon-brain::before {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    border: 2px solid currentColor;
    border-radius: 50% 50% 50% 0;
    top: 2px;
    left: 2px;
}

.icon-plane::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-bottom: 12px solid currentColor;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    top: 2px;
    left: 4px;
}

.icon-plane::after {
    content: "";
    position: absolute;
    width: 14px;
    height: 2px;
    background: currentColor;
    top: 10px;
    left: 2px;
}

.icon-lock::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 8px;
    border: 2px solid currentColor;
    border-radius: 2px;
    bottom: 2px;
    left: 4px;
}

.icon-lock::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 5px;
    border: 2px solid currentColor;
    border-bottom: 0;
    border-radius: 6px 6px 0 0;
    top: 3px;
    left: 6px;
}

.icon-flag::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 14px;
    background: currentColor;
    top: 2px;
    left: 4px;
}

.icon-flag::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 8px;
    background: currentColor;
    clip-path: polygon(0 0, 100% 20%, 80% 50%, 100% 80%, 0 100%);
    top: 2px;
    left: 6px;
}

.icon-crown::before {
    content: "";
    position: absolute;
    width: 14px;
    height: 10px;
    background: currentColor;
    clip-path: polygon(0% 100%, 15% 30%, 50% 60%, 85% 30%, 100% 100%);
    top: 4px;
    left: 2px;
}

.icon-users::before {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    top: 1px;
    left: 2px;
}

.icon-users::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 7px;
    border-radius: 7px 7px 0 0;
    background: currentColor;
    bottom: 1px;
    left: 0;
}

.icon-target::before {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    border: 2px solid currentColor;
    border-radius: 50%;
    top: 2px;
    left: 2px;
}

.icon-target::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background: currentColor;
    border-radius: 50%;
    top: 6px;
    left: 6px;
}

.icon-medal::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border: 2px solid currentColor;
    border-radius: 50%;
    top: 4px;
    left: 4px;
}

.icon-medal::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 6px solid currentColor;
    top: 0;
    left: 5px;
    transform: rotate(180deg);
}

.icon-warning::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 16px solid currentColor;
    top: 1px;
    left: 0;
}

.icon-warning::after {
    content: "!";
    position: absolute;
    font-size: 10px;
    font-weight: 800;
    color: #fff;
    top: 6px;
    left: 7px;
}

@media (max-width: 600px) {
    .container {
        padding: 16px;
    }

    .nav-inner {
        padding: 12px 16px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 12px;
    }

    .brand img {
        height: 46px;
    }

    .brand .title strong {
        font-size: 13px;
    }

    .brand .title span {
        font-size: 11px;
    }

    .brand {
        width: 100%;
        justify-content: center;
        text-align: center;
        gap: 10px;
    }

    .brand .title {
        align-items: center;
    }

    .nav-actions {
        width: 100%;
        justify-content: center;
    }

    .card-inner {
        padding: 20px;
    }

    .h1 {
        font-size: 22px;
    }

    .toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .toolbar-left, .toolbar-right {
        justify-content: center;
    }

    .search-box input {
        min-width: 150px;
    }

    .pager {
        flex-direction: column;
        align-items: center;
    }
}


.validation-msg {
    display: block;
    font-size: 15px;
    color: #ef4848;
}
