:root {
    --teal: #08718f;
    --deep: #065a72;
    --line: #dbe7ed;
    --soft: #f5f9fb;
    --muted: #617987;
}

* {
    box-sizing: border-box;
}

body {
    background: var(--soft);
    color: #263d4c;
    font-family: "Poppins", system-ui, sans-serif;
}

.app-header {
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 1px 10px rgba(25, 55, 80, .04);
}

.auroion-logo {
    width: 190px;
    height: auto;
    display: block;
}

.nav-pills .nav-link {
    color: #506477;
    font-weight: 700;
    padding: .68rem 1rem;
    border-radius: 9px;
}

.nav-pills .nav-link.active {
    color: #fff;
    background: var(--teal);
}

.page-wrap {
    max-width: 1560px;
    margin: auto;
    padding: 32px 24px 56px;
}

.page-title {
    color: var(--deep);
    font-weight: 800;
    letter-spacing: -.04em;
}

.page-kicker {
    color: var(--muted);
    font-size: .95rem;
}

.panel {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(28, 62, 91, .045);
    margin-top: 24px;
}

.toolbar {
    padding: 20px 24px;
    border-bottom: 1px solid var(--line);
}

.search-group {
    max-width: 460px;
}

.form-control {
    border-color: #cbdbe5;
    min-height: 47px;
    border-radius: 9px;
    font-size: .9rem;
}

.input-group-text {
    border-color: #cbdbe5;
    color: var(--teal);
    background: #f6fbfd;
    border-radius: 9px 0 0 9px;
}

.btn-primary {
    --bs-btn-bg: var(--teal);
    --bs-btn-border-color: var(--teal);
    --bs-btn-hover-bg: var(--deep);
    --bs-btn-hover-border-color: var(--deep);
    font-weight: 700;
}

.table-responsive {
    margin: 0;
}

.listing-table {
    min-width: 960px;
    margin: 0;
}

.listing-table th {
    background: #5f7585;
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    padding: .95rem .8rem;
    white-space: nowrap;
    text-align: center;
    vertical-align: middle;
}

.listing-table td {
    border-color: #e2ebf0;
    padding: .75rem .8rem;
    vertical-align: middle;
    text-align: center;
    font-size: .88rem;
}

.listing-table tbody tr:hover {
    background: #f8fcfe;
}

.product-cell {
    text-align: center;
    min-width: 265px;
}

.product-image {
    width: 58px;
    height: 46px;
    object-fit: contain;
    border: 1px solid #e0e9ee;
    border-radius: 8px;
    background: #f7fafb;
    padding: 3px;
    flex: 0 0 auto;
}

.product-name {
    color: #164b5d;
    font-weight: 700;
    line-height: 1.3;
}

.muted {
    color: #7a8c98;
    font-size: .78rem;
}

.pill {
    display: inline-block;
    min-width: 104px;
    padding: .37rem .58rem;
    color: #3c6070;
    background: #eff7fa;
    border-radius: 7px;
    font-size: .8rem;
    font-weight: 600;
}

.price {
    color: var(--deep);
    font-weight: 700;
}

.btn-action {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: inline-grid;
    place-items: center;
}

.btn-edit {
    border: 1px solid #9fc8d9;
    color: var(--teal);
    background: #f2fafd;
}

.btn-delete {
    border: 1px solid #f2c7ca;
    color: #c5444c;
    background: #fff4f4;
}

@media (max-width: 767.98px) {

    .page-wrap {
        padding: 20px 14px 40px;
    }

    .header-inner,
    .toolbar {
        align-items: stretch !important;
        flex-direction: column;
        gap: 12px;
    }

    .toolbar {
        padding: 16px;
    }

    .toolbar .btn {
        width: 100%;
    }
}