﻿:root {
    --app-bg: #eef4fb;
    --app-surface: #ffffff;
    --app-line: #d8e6f5;
    --app-text: #16324f;
    --app-muted: #5f7fa8;
    --app-blue: #00aaff;
    --app-blue-dark: #163b75;
    --app-blue-mid: #315f97;
    --app-blue-soft: #eef6ff;
    --app-blue-soft-2: #dbeafe;
    --app-shadow: 0 10px 30px rgba(29, 78, 216, 0.08);
    --app-radius: 10px;
    --app-topbar-bg: linear-gradient(135deg, #dbeafe 0%, #eef6ff 55%, #f7fbff 100%);
    --app-hero-bg: linear-gradient(135deg, #dbeafe 0%, #eef6ff 55%, #f7fbff 100%);
}

html,
body {
    min-height: 100%;
}

    body.app-layout-body {
        margin: 0;
        background: var(--app-bg);
        color: var(--app-text);
        font-family: Inter, "Segoe UI", Arial, sans-serif;
    }

/* =========================
   TOP BAR / NAVBAR
========================= */
.app-topbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--app-hero-bg);
    border-bottom: 1px solid #cfe0ff;
    backdrop-filter: blur(8px);
    transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

    .app-topbar .app-topbar-inner {
        max-width: 1400px;
        margin: 0 auto;
        padding: 16px 20px;
        display: flex;
        align-items: center;
        transition: padding 0.25s ease;
    }

    .app-topbar .app-brand-logo {
        height: 56px;
        width: auto;
        transition: height 0.25s ease, transform 0.25s ease;
    }

    .app-topbar .app-brand-title {
        font-size: 1.08rem;
        transition: font-size 0.25s ease;
    }

    .app-topbar .app-brand-subtitle {
        font-size: 0.84rem;
        transition: font-size 0.25s ease, opacity 0.25s ease;
    }

    .app-topbar .app-nav-link {
        padding: 12px 14px !important;
        font-size: 1rem;
        transition: padding 0.25s ease, font-size 0.25s ease, background 0.2s ease, color 0.2s ease;
    }

    .app-topbar .app-social-link {
        width: 40px;
        height: 40px;
        transition: width 0.25s ease, height 0.25s ease, transform 0.25s ease;
    }

    /* Scrolled state = slightly smaller */
    .app-topbar.scrolled {
        box-shadow: 0 8px 22px rgba(29, 78, 216, 0.10);
    }

        .app-topbar.scrolled .app-topbar-inner {
            padding: 10px 20px;
        }

        .app-topbar.scrolled .app-brand-logo {
            height: 46px;
        }

        .app-topbar.scrolled .app-brand-title {
            font-size: 1rem;
        }

        .app-topbar.scrolled .app-brand-subtitle {
            font-size: 0.78rem;
        }

        .app-topbar.scrolled .app-nav-link {
            padding: 9px 12px !important;
            font-size: 0.96rem;
        }

        .app-topbar.scrolled .app-social-link {
            width: 36px;
            height: 36px;
        }


.app-navbar {
    padding: 0;
    background: transparent;
}

.app-topbar-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
}

.app-brand-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--app-blue-dark);
    margin-right: 20px;
    min-width: 0;
}

    .app-brand-link:hover,
    .app-brand-link:focus {
        color: #0f3f8a;
        text-decoration: none;
    }

.logo-badge {
    background: rgba(255, 255, 255, 0.74);
    padding: 6px 10px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(29, 78, 216, 0.12);
    box-shadow: 0 4px 14px rgba(29, 78, 216, 0.08);
}

.app-brand-logo {
    height: 52px;
    width: auto;
    display: block;
}

.app-brand-text {
    min-width: 0;
}

.app-brand-title {
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--app-blue-dark);
}

.app-brand-subtitle {
    font-size: 0.84rem;
    color: var(--app-muted);
    margin-top: 2px;
}

.app-nav-links {
    align-items: center;
    gap: 6px;
}

.app-nav-link {
    color: var(--app-blue-mid) !important;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 14px !important;
    border-radius: 8px;
    transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

    .app-nav-link:hover,
    .app-nav-link:focus {
        color: #0f3f8a !important;
        background: rgba(0, 170, 255, 0.10);
        text-decoration: none;
    }

    .app-nav-link.active,
    .app-nav-link[aria-current="page"] {
        color: var(--app-blue) !important;
        background: rgba(0, 170, 255, 0.12);
        box-shadow: inset 0 -2px 0 var(--app-blue);
    }

.app-topbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: 20px;
}

.app-socials {
    display: flex;
    align-items: center;
    gap: 8px;
}

.app-social-link {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #4a6f99;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(29, 78, 216, 0.10);
    transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

    .app-social-link:hover,
    .app-social-link:focus {
        background: rgba(0, 170, 255, 0.12);
        color: #0f3f8a;
        text-decoration: none;
        box-shadow: 0 0 0 4px rgba(0, 170, 255, 0.08);
    }

.app-login-wrap {
    color: var(--app-blue-mid);
}

    .app-login-wrap a,
    .app-login-wrap .nav-link,
    .app-login-wrap button {
        color: var(--app-blue-mid) !important;
    }

        .app-login-wrap a:hover,
        .app-login-wrap .nav-link:hover,
        .app-login-wrap button:hover {
            color: #0f3f8a !important;
        }

.app-nav-toggle {
    border: 0;
    background: transparent;
    padding: 6px;
    margin-left: auto;
    box-shadow: none;
}

    .app-nav-toggle:focus {
        box-shadow: none;
    }

    .app-nav-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--app-blue-dark);
        margin: 5px 0;
        border-radius: 999px;
    }

/* =========================
   HERO SECTION
========================= */
/* =========================
   HERO (DARK PREMIUM VERSION)
========================= */
.app-hero {
    background: linear-gradient(
        135deg,
        #0b1e3a 0%,
        #12345f 40%,
        #1f4e85 100%
    );
    border-bottom: 1px solid rgba(0, 170, 255, 0.2);
}

.app-hero-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 36px 20px;
}

/* Text now needs to be LIGHT */
.app-hero-kicker {
    color: #00aaff;
    font-weight: 800;
}

.app-hero-title {
    font-size: 2.3rem;
    font-weight: 800;
    color: #ffffff;
}

.app-hero-subtitle {
    color: #cfe6ff;
}

/* =========================
   FULL HERO / BANNER STYLE
   (for the large image section)
========================= */
/* =========================
   FULL HERO / BANNER (DARK MATCH)
========================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 80px;
    overflow: hidden;
    color: white;
    /* slightly lighter base */
    background: linear-gradient( 135deg, #132a4a 0%, #1f4a7a 40%, #3b78b5 100% );
}

/* Background image */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

    .hero-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* allow more image visibility */
        opacity: 0.45;
    }

/* Softer overlay */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( 120deg, rgba(19, 42, 74, 0.85) 0%, rgba(31, 74, 122, 0.75) 45%, rgba(59, 120, 181, 0.55) 100% );
    z-index: 1;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
}

/* Logo */
.hero-logo {
    width: 180px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(0, 170, 255, 0.35));
}

/* Title */
.hero h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #ffffff;
}

/* Subtitle */
.hero p {
    font-size: 20px;
    color: #dbeafe;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: var(--app-blue);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    border: 1px solid transparent;
    transition: 0.25s ease;
}

    .btn-primary:hover {
        background: #0094de;
        color: white;
        text-decoration: none;
    }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: 1px solid var(--app-blue);
    color: var(--app-blue-dark);
    background: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.25s ease;
}

    .btn-secondary:hover {
        background: rgba(0, 170, 255, 0.10);
        color: #0f3f8a;
        text-decoration: none;
    }

/* =========================
   MAIN CONTENT / PANELS
========================= */
.app-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px 20px 40px;
}

.app-card,
.card {
    background: var(--app-surface);
    border: 1px solid var(--app-line);
    border-radius: var(--app-radius);
    box-shadow: var(--app-shadow);
}

.app-card-header {
    padding: 16px 18px;
    border-bottom: 1px solid var(--app-line);
    font-weight: 700;
    color: var(--app-blue-dark);
}

.app-card-body {
    padding: 18px;
}

.app-section-title {
    color: var(--app-blue-dark);
    font-weight: 800;
    margin-bottom: 10px;
}

.app-text-muted {
    color: var(--app-muted);
}

/* =========================
   FORMS / INPUTS
========================= */
.form-control,
.form-select,
input,
select,
textarea {
    border-radius: 8px;
    border: 1px solid #cfdced;
    box-shadow: none !important;
}

    .form-control:focus,
    .form-select:focus,
    input:focus,
    select:focus,
    textarea:focus {
        border-color: rgba(0, 170, 255, 0.5);
        box-shadow: 0 0 0 4px rgba(0, 170, 255, 0.10) !important;
    }

label {
    color: var(--app-blue-dark);
    font-weight: 600;
}

/* =========================
   TABLES
========================= */
.table {
    --bs-table-bg: transparent;
    color: var(--app-text);
}

    .table thead th {
        color: var(--app-blue-dark);
        background: var(--app-blue-soft);
        border-bottom: 1px solid var(--app-line);
        font-weight: 700;
    }

    .table tbody tr:hover {
        background: rgba(0, 170, 255, 0.04);
    }

/* =========================
   DROPDOWNS
========================= */
.dropdown-menu {
    border: 1px solid var(--app-line);
    border-radius: 10px;
    box-shadow: 0 18px 40px rgba(29, 78, 216, 0.10);
    padding: 8px;
}

.dropdown-item {
    border-radius: 8px;
    color: var(--app-blue-mid);
    font-weight: 500;
}

    .dropdown-item:hover,
    .dropdown-item:focus {
        background: rgba(0, 170, 255, 0.08);
        color: #0f3f8a;
    }

/* =========================
   FOOTER
========================= */
.app-footer {
    border-top: 1px solid var(--app-line);
    background: rgba(255, 255, 255, 0.7);
    color: var(--app-muted);
    padding: 16px 20px;
}

    .app-footer a {
        color: var(--app-blue-mid);
        text-decoration: none;
    }

        .app-footer a:hover {
            color: #0f3f8a;
        }

/* =========================
   UTILITIES
========================= */
.text-primary,
.app-text-primary {
    color: var(--app-blue-dark) !important;
}

.text-accent,
.app-text-accent {
    color: var(--app-blue) !important;
}

.bg-soft {
    background: var(--app-blue-soft);
}

.border-soft {
    border-color: var(--app-line) !important;
}

.shadow-soft {
    box-shadow: var(--app-shadow);
}

.rounded-soft {
    border-radius: var(--app-radius);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991.98px) {
    .app-topbar-inner {
        padding: 10px 16px;
        flex-wrap: wrap;
    }

    .app-brand-title {
        font-size: 0.98rem;
    }

    .app-brand-subtitle {
        font-size: 0.78rem;
    }

    .app-topbar-right {
        width: 100%;
        margin-left: 0;
        margin-top: 10px;
        justify-content: space-between;
    }

    .hero {
        min-height: 80vh;
        padding: 40px 28px;
    }

        .hero h1 {
            font-size: 40px;
        }

        .hero p {
            font-size: 18px;
        }

    .app-hero-inner,
    .app-main {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (max-width: 767.98px) {
    .app-brand-text {
        display: none;
    }

    .app-socials {
        gap: 6px;
    }

    .app-social-link {
        width: 34px;
        height: 34px;
    }

    .hero {
        min-height: 70vh;
        padding: 30px 18px;
    }

        .hero h1 {
            font-size: 32px;
            line-height: 1.15;
        }

        .hero p {
            font-size: 16px;
        }

    .hero-logo {
        width: 140px;
    }

    .hero-buttons {
        gap: 10px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .app-hero-title {
        font-size: 1.7rem;
    }

    .app-hero-subtitle {
        font-size: 0.95rem;
    }
}

/* =========================
   THEMED GALLERY SECTION
========================= */
.app-gallery-section {
    padding: 48px 0 56px;
    background: transparent;
}

.app-gallery-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 24px;
    align-items: stretch;
}

.app-gallery-card {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid #d8e6f5;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(29, 78, 216, 0.08);
    backdrop-filter: blur(8px);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

    .app-gallery-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 40px rgba(29, 78, 216, 0.14);
        border-color: rgba(0, 170, 255, 0.25);
    }

.app-gallery-image-wrap {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: linear-gradient(135deg, #dbeafe 0%, #eef6ff 100%);
}

.app-gallery-image-tall {
    height: 300px;
}

.app-gallery-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.app-gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease, filter 0.35s ease;
}

.app-gallery-card:hover .app-gallery-image {
    transform: scale(1.04);
    filter: saturate(1.03) contrast(1.02);
}

.app-gallery-body {
    padding: 22px 22px 24px;
}

.app-gallery-title {
    margin: 0;
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1.25;
    color: #163b75;
}

.app-gallery-title-link {
    color: #163b75;
    text-decoration: none;
    transition: color 0.2s ease;
}

    .app-gallery-title-link:hover {
        color: #00aaff;
        text-decoration: none;
    }

/* Optional subtle accent line */
.app-gallery-body::before {
    content: "";
    display: block;
    width: 58px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #00aaff 0%, #7dd3fc 100%);
    margin-bottom: 14px;
}

@media (max-width: 991.98px) {
    .app-gallery-grid {
        grid-template-columns: 1fr;
    }

    .app-gallery-image-wrap,
    .app-gallery-image-tall {
        height: 280px;
    }
}

@media (max-width: 575.98px) {
    .app-gallery-section {
        padding: 32px 0 40px;
    }

    .app-gallery-body {
        padding: 18px 18px 20px;
    }

    .app-gallery-title {
        font-size: 1.2rem;
    }

    .app-gallery-image-wrap,
    .app-gallery-image-tall {
        height: 220px;
    }
}
/* ===== Global page layout ===== */
.app-shell {
    padding: 24px;
}

.app-card {
    background: #ffffff;
    border: 1px solid #dbe7f3;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    padding: 24px;
}

.app-section {
    margin-top: 24px;
}

/* ===== Global header band ===== */
.app-header-band {
    margin-bottom: 28px;
    padding: 24px 28px;
    border-radius: 18px;
    background: linear-gradient(135deg, #eaf4ff 0%, #f8fbff 100%);
    border: 1px solid #dbe7f3;
}

.app-kicker {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #2563eb;
    margin-bottom: 8px;
}

.app-title {
    margin: 0 0 10px 0;
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
}

.app-subtitle {
    margin: 0;
    max-width: 900px;
    color: #475569;
    font-size: 1rem;
    line-height: 1.65;
}

/* ===== Global grid system ===== */
.app-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.app-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

/* ===== Global tile cards ===== */
.app-tile {
    display: block;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid #dbe7f3;
    border-radius: 16px;
    padding: 20px 22px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

    .app-tile:hover {
        text-decoration: none;
        transform: translateY(-2px);
        box-shadow: 0 12px 28px rgba(15, 23, 42, 0.10);
        border-color: #93c5fd;
    }

.app-tile-kicker {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #2563eb;
    margin-bottom: 8px;
}

.app-tile-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.app-tile-text {
    font-size: 0.96rem;
    line-height: 1.55;
    color: #475569;
}

/* ===== Global content card ===== */
.app-panel {
    background: #ffffff;
    border: 1px solid #dbe7f3;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

/* ===== Tables ===== */
.app-table-wrap {
    background: #ffffff;
    border: 1px solid #dbe7f3;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.app-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

    .app-table thead th {
        background: #f8fbff;
        color: #0f172a;
        font-weight: 700;
        font-size: 0.92rem;
        padding: 14px 16px;
        border-bottom: 1px solid #dbe7f3;
    }

    .app-table tbody td {
        padding: 14px 16px;
        border-bottom: 1px solid #e2e8f0;
        color: #334155;
        vertical-align: middle;
    }

    .app-table tbody tr:hover {
        background: #f8fbff;
    }

/* ===== Forms ===== */
.app-form-group {
    margin-bottom: 18px;
}

.app-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #0f172a;
}

.app-input,
.app-select,
.app-textarea {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 0.96rem;
    color: #0f172a;
    background: #ffffff;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

    .app-input:focus,
    .app-select:focus,
    .app-textarea:focus {
        outline: none;
        border-color: #60a5fa;
        box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.15);
    }

/* ===== Buttons ===== */
.app-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    border-radius: 12px;
    padding: 10px 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.app-btn-primary {
    background: #2563eb;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.22);
}

    .app-btn-primary:hover {
        color: #ffffff;
        text-decoration: none;
        transform: translateY(-1px);
        opacity: 0.96;
    }

.app-btn-secondary {
    background: #eaf4ff;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
}

    .app-btn-secondary:hover {
        text-decoration: none;
        color: #1e40af;
    }

/* ===== Responsive ===== */
@media (max-width: 991.98px) {
    .app-grid-2,
    .app-grid-3 {
        grid-template-columns: 1fr;
    }

    .app-title {
        font-size: 1.65rem;
    }

    .app-shell {
        padding: 16px;
    }

    .app-card {
        padding: 18px;
    }

    .app-header-band {
        padding: 18px 20px;
    }
}


.app-panel-header {
    margin-bottom: 18px;
}

.app-section-title {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
}

.app-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 18px;
}

.app-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.app-list-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 20px;
    background: #ffffff;
    border: 1px solid #dbe7f3;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.app-list-card-media {
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-part-image {
    width: 100%;
    max-width: 200px;
    max-height: 170px;
    object-fit: contain;
    border-radius: 12px;
    background: #f8fbff;
    border: 1px solid #e2e8f0;
    padding: 10px;
}

.app-image-placeholder {
    width: 200px;
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #f8fbff;
    border: 1px dashed #cbd5e1;
    color: #64748b;
    font-weight: 600;
}

.app-list-card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
}

.app-list-card-header {
    margin-bottom: 10px;
}

.app-list-card-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
}

.app-list-card-details {
    display: grid;
    gap: 8px;
    color: #334155;
    line-height: 1.55;
}

.app-detail-label {
    font-weight: 700;
    color: #0f172a;
}

@media (max-width: 991.98px) {
    .app-list-card {
        grid-template-columns: 1fr;
    }

    .app-list-card-media {
        justify-content: flex-start;
    }
}

.app-table-scroll {
    width: 100%;
    overflow-x: auto;
}

.app-status-danger {
    background: #dc2626 !important;
    color: #ffffff !important;
    font-weight: 700;
}

.app-status-warning {
    background: #facc15 !important;
    color: #111827 !important;
    font-weight: 700;
}

.app-btn-sm {
    padding: 8px 12px;
    font-size: 0.88rem;
    border-radius: 10px;
    line-height: 1.2;
}