:root {
    --bg: #f5f7f8;
    --panel: #ffffff;
    --ink: #15202b;
    --muted: #667085;
    --line: #d7dee6;
    --brand: #0d5c63;
    --brand-2: #f2b84b;
    --brand-soft: #e7f2f1;
    --danger: #b42318;
    --ok: #117a48;
    --shadow: 0 18px 42px rgba(21, 32, 43, .08);
}

* { box-sizing: border-box; }

html {
    width: 100%;
    overflow-x: hidden;
}

body {
    width: 100%;
    min-width: 0;
    margin: 0;
    overflow-x: hidden;
    background: var(--bg);
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
}

img, svg, video, iframe {
    max-width: 100%;
}

a { color: inherit; text-decoration: none; }

main {
    width: min(1200px, calc(100% - 32px));
    margin: 28px auto 56px;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 10;
    width: 100%;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid rgba(215, 222, 230, .86);
    box-shadow: 0 10px 28px rgba(21, 32, 43, .06);
    backdrop-filter: blur(14px);
}

.topbar-inner {
    width: min(1200px, calc(100% - 32px));
    min-height: 74px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    min-width: 0;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--brand);
    font-size: 22px;
    font-weight: 800;
    white-space: nowrap;
}

.brand-mark {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--brand);
    color: #fff;
    font-weight: 900;
}

.brand img {
    max-height: 42px;
    max-width: 190px;
    object-fit: contain;
}

.main-nav,
.actions,
.tabs,
.inline,
.side-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.main-nav {
    min-width: 0;
    flex: 1;
    justify-content: flex-end;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 7px;
    border: 1px solid #e4ebf1;
    border-radius: 8px;
    background: #f8fafb;
    scrollbar-width: thin;
}

.main-nav a,
.main-nav button,
.tabs a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    border-radius: 6px;
    border: 0;
    background: transparent;
    color: #405064;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}

.main-nav a {
    border: 1px solid transparent;
}

.main-nav a:hover,
.tabs a:hover {
    border-color: #d9e4ec;
    background: #fff;
    color: var(--brand);
}

.main-nav .button.compact {
    padding: 0 14px;
    background: var(--brand);
    color: #fff;
}

.main-nav form { margin: 0; }

.menu-button {
    display: none;
}

.button,
button {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 16px;
    border: 1px solid var(--brand);
    border-radius: 6px;
    background: var(--brand);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}

.button.secondary,
button.ghost {
    background: #fff;
    color: var(--brand);
}

.danger-button {
    border-color: var(--danger);
    background: var(--danger);
    color: #fff;
}

.button.compact {
    min-height: 38px;
    padding: 0 14px;
}

.flash {
    width: min(1200px, calc(100% - 32px));
    margin: 18px auto 0;
    padding: 14px 16px;
    border-left: 4px solid var(--brand);
    border-radius: 6px;
    background: #fff;
    box-shadow: var(--shadow);
}

.hero {
    min-width: 0;
    display: grid;
    grid-template-columns: minmax(0, .98fr) minmax(280px, .72fr);
    gap: 24px;
    align-items: center;
    padding: 28px;
    overflow: hidden;
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(13, 92, 99, .98), rgba(17, 99, 91, .94)),
        #0d5c63;
    color: #fff;
}

.hero-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
}

.eyebrow {
    width: fit-content;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    background: rgba(255, 255, 255, .10);
    color: #eaf7f6;
    font-size: 13px;
    font-weight: 800;
}

.hero h1 {
    max-width: 650px;
    margin: 0;
    font-size: 48px;
    line-height: 1.06;
    letter-spacing: 0;
}

.hero p {
    max-width: 650px;
    margin: 0;
    color: #e6f2f1;
    font-size: 18px;
    line-height: 1.55;
}

.hero-media {
    min-width: 0;
    width: 100%;
    aspect-ratio: 4 / 3;
    max-height: 390px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 8px;
    background: #edf2f4;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .16);
}

.hero-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.hero-search {
    width: 100%;
    max-width: 760px;
    display: grid;
    grid-template-columns: minmax(220px, 1.35fr) minmax(130px, .75fr) minmax(130px, .75fr) auto;
    gap: 10px;
    padding: 12px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 34px rgba(0, 0, 0, .16);
}

.hero-search input,
.hero-search select {
    min-width: 0;
}

.hero-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-links a {
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    color: #ecf8f7;
    font-size: 14px;
    font-weight: 700;
}

.notice {
    max-width: 760px;
    display: inline-flex;
    padding: 10px 12px;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 6px;
    background: rgba(255,255,255,.10);
    color: #fff;
    line-height: 1.45;
}

.notice.warning {
    display: block;
    background: #fff7e6;
    color: #7a4b00;
    border-color: #ffd89a;
}

.notice.success {
    display: block;
    background: #e8f7ef;
    color: var(--ok);
    border-color: #bde5cd;
}

.category-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 18px 0;
}

.category-strip a,
.shortcut-grid a {
    min-width: 0;
    display: grid;
    gap: 5px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    transition: border-color .16s ease, transform .16s ease;
}

.category-strip a:hover,
.shortcut-grid a:hover {
    border-color: var(--brand);
    transform: translateY(-1px);
}

.category-strip strong,
.shortcut-grid strong {
    color: var(--ink);
    font-size: 17px;
}

.category-strip span,
.shortcut-grid span {
    color: var(--muted);
    line-height: 1.4;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.stat-grid div,
.panel,
.listing-card {
    min-width: 0;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.stat-grid div {
    padding: 18px;
}

.stat-grid strong {
    display: block;
    color: var(--brand);
    font-size: 25px;
}

.stat-grid span,
.muted,
.listing-card p,
.section-head p {
    color: var(--muted);
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 18px;
    margin: 30px 0 14px;
}

.section-head.in-panel {
    margin: 0 0 18px;
}

.section-head h1,
.section-head h2 {
    margin: 0 0 6px;
}

.grid {
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.listing-card {
    min-height: 390px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.listing-card > :not(.thumb) {
    margin-left: 16px;
    margin-right: 16px;
}

.listing-card .meta { margin-bottom: 16px; }

.listing-card h3 {
    margin: 0;
    min-height: 52px;
    font-size: 20px;
    line-height: 1.3;
}

.listing-card p { margin: 0; }

.thumb {
    display: flex;
    width: 100%;
    aspect-ratio: 4 / 3;
    align-items: center;
    justify-content: center;
    background: #dfe7ed;
    color: var(--muted);
    font-weight: 800;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 14px;
    margin-bottom: 10px;
}

.badge {
    align-self: flex-start;
    padding: 5px 9px;
    background: #fff4d8;
    color: #7a4b00;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.badge.hot {
    background: #fde2df;
    color: var(--danger);
}

.badge.showcase {
    background: #dff3ec;
    color: var(--brand);
}

.badge.bid {
    background: #e6edff;
    color: #3152a3;
}

.listing-specs,
.quick-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.listing-specs span,
.quick-specs span {
    padding: 6px 8px;
    border-radius: 6px;
    background: #eef3f4;
    color: var(--muted);
    font-size: 13px;
}

.price {
    margin-top: 14px;
    font-size: 24px;
    font-weight: 800;
    color: var(--brand);
}

.meta {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    color: var(--muted);
    font-size: 14px;
}

.panel {
    padding: 22px;
    margin-bottom: 18px;
}

.admin-shortcuts {
    margin-top: 18px;
}

.shortcut-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.filter-panel {
    display: grid;
    gap: 10px;
    margin: 18px 0;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.filter-panel.advanced {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.filter-panel button {
    grid-column: 4;
}

.narrow {
    width: min(520px, 100%);
    margin: 38px auto;
}

.narrowish {
    width: min(760px, 100%);
}

.form {
    display: grid;
    gap: 14px;
}

.form.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-user-form {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin-listing-form {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.span-2 {
    grid-column: span 2;
}

.form label {
    min-width: 0;
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-weight: 700;
}

.form-title {
    margin: 12px 0 0;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    font-size: 18px;
}

.check {
    display: flex !important;
    grid-template-columns: none !important;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    color: var(--ink) !important;
}

.check input {
    width: auto;
    min-height: auto;
}

.full { grid-column: 1 / -1; }

input,
select,
textarea {
    width: 100%;
    min-width: 0;
    min-height: 42px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
    color: var(--ink);
    font: inherit;
}

textarea { resize: vertical; }

table {
    width: 100%;
    border-collapse: collapse;
}

.responsive-table {
    width: 100%;
    overflow-x: auto;
}

.admin-edit-table input,
.admin-edit-table select {
    min-width: 170px;
    margin: 3px 0;
}

.admin-edit-table td {
    vertical-align: top;
}

.table-actions {
    display: grid;
    gap: 8px;
    min-width: 120px;
}

th,
td {
    padding: 12px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: middle;
}

th {
    color: var(--muted);
    font-size: 13px;
    text-transform: uppercase;
}

.detail {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(320px, .75fr);
    gap: 18px;
}

.sticky-side {
    align-self: start;
    position: sticky;
    top: 90px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 18px 0;
}

.gallery img,
.empty-photo {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
    background: #dfe7ed;
}

.empty-photo {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-weight: 800;
}

.gallery-item {
    position: relative;
    width: 100%;
    min-height: 0;
    display: block;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 8px;
    background: #dfe7ed;
    cursor: zoom-in;
}

.gallery-item img {
    display: block;
    transition: transform .18s ease;
}

.gallery-item:hover img {
    transform: scale(1.02);
}

.gallery-item::after,
.edit-image-card::after {
    content: "kacmaz.com.tr";
    position: absolute;
    right: 12px;
    bottom: 10px;
    padding: 4px 7px;
    border-radius: 6px;
    background: rgba(0, 0, 0, .20);
    color: rgba(255, 255, 255, .66);
    font-weight: 900;
    font-size: 14px;
    pointer-events: none;
}

.image-lightbox[hidden] {
    display: none;
}

.image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: grid;
    place-items: center;
    padding: 28px;
    background: rgba(8, 15, 24, .84);
}

.lightbox-frame {
    position: relative;
    max-width: min(1120px, 94vw);
    max-height: 88vh;
}

.lightbox-frame img {
    max-width: 100%;
    max-height: 88vh;
    display: block;
    border-radius: 8px;
    object-fit: contain;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .38);
}

.lightbox-frame::after {
    content: "kacmaz.com.tr";
    position: absolute;
    right: 18px;
    bottom: 16px;
    color: rgba(255, 255, 255, .58);
    font-size: 24px;
    font-weight: 900;
    text-shadow: 0 2px 14px rgba(0, 0, 0, .42);
}

.lightbox-close {
    position: fixed;
    top: 18px;
    right: 18px;
    width: 44px;
    min-height: 44px;
    padding: 0;
    border-color: rgba(255,255,255,.35);
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    color: #fff;
    font-size: 30px;
    line-height: 1;
}

.is-lightbox-open {
    overflow: hidden;
}

.field-note {
    color: var(--muted);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.45;
}

.edit-image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}

.edit-image-card {
    position: relative;
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.edit-image-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    display: block;
    object-fit: cover;
}

.edit-image-card figcaption {
    padding: 9px 10px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.edit-image-card form {
    padding: 0 10px 10px;
}

.edit-image-card button {
    width: 100%;
}

.message-list {
    display: grid;
    gap: 14px;
}

.message-card {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fbfdfe;
}

.message-card-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
}

.message-card-head h2 {
    margin: 9px 0 5px;
    font-size: 20px;
}

.message-card-head p,
.message-card-head time {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.message-bubble {
    margin: 14px 0;
    padding: 14px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e5edf3;
    line-height: 1.6;
}

.message-bubble.reply {
    display: grid;
    gap: 7px;
    background: var(--brand-soft);
    border-color: #c9e2df;
}

.message-bubble.reply small {
    color: var(--muted);
}

.message-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.long-text {
    line-height: 1.75;
}

dl {
    display: grid;
    grid-template-columns: 128px 1fr;
    gap: 11px;
}

dt { color: var(--muted); }
dd { margin: 0; font-weight: 700; }

.side-actions {
    margin: 18px 0;
}

.payment-panel iframe {
    width: 100%;
    min-height: 720px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.site-footer {
    width: 100%;
    margin-top: 48px;
    padding: 40px 0 28px;
    border-top: 1px solid var(--line);
    background: #fff;
}

.footer-inner {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(260px, 1.25fr) repeat(auto-fit, minmax(150px, 1fr));
    gap: 28px;
    align-items: start;
}

.footer-about {
    min-width: 0;
}

.footer-brand {
    margin-bottom: 12px;
}

.footer-inner p {
    max-width: 460px;
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.6;
}

.footer-group {
    min-width: 0;
    padding-top: 4px;
}

.footer-inner h3 {
    margin: 0 0 12px;
    color: var(--ink);
    font-size: 15px;
}

.footer-links {
    display: grid;
    gap: 8px;
}

.footer-links a {
    width: fit-content;
    color: var(--muted);
    line-height: 1.35;
}

.footer-links a:hover {
    color: var(--brand);
}

.footer-contact {
    font-weight: 700;
}

.content-page {
    max-width: 860px;
    margin: 0 auto 18px;
    line-height: 1.7;
}

.empty-state {
    text-align: center;
}

@media (max-width: 1100px) {
    .topbar-inner {
        gap: 12px;
    }

    .main-nav {
        justify-content: flex-start;
    }

    .hero {
        grid-template-columns: 1fr;
    }

    .hero-media {
        max-height: none;
        aspect-ratio: 16 / 7;
    }

    .grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    main {
        width: min(100% - 20px, 1200px);
        margin-top: 16px;
    }

    .topbar-inner {
        width: min(100% - 20px, 1200px);
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 10px;
    }

    .brand {
        font-size: 19px;
    }

    .brand-mark {
        flex-basis: 34px;
        width: 34px;
        height: 34px;
    }

    .menu-button {
        min-height: 38px;
        display: inline-flex;
        padding: 0 12px;
    }

    .main-nav {
        display: none;
        grid-column: 1 / -1;
        width: 100%;
        padding-top: 8px;
    }

    .main-nav.is-open {
        display: grid;
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .main-nav a,
    .main-nav form,
    .main-nav button {
        width: 100%;
    }

    .main-nav a,
    .main-nav button {
        justify-content: flex-start;
        min-height: 42px;
        padding: 0 10px;
        border-radius: 6px;
        background: #f7fafb;
    }

    .main-nav .button {
        justify-content: center;
        background: var(--brand);
        color: #fff;
    }

    .hero {
        padding: 18px;
        gap: 18px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-search {
        grid-template-columns: 1fr;
        max-width: none;
    }

    .hero-media {
        aspect-ratio: 16 / 10;
    }

    .grid,
    .stat-grid,
    .filter-panel,
    .filter-panel.advanced,
    .category-strip,
    .shortcut-grid,
    .detail,
    .form.two,
    .admin-user-form,
    .admin-listing-form,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .span-2 {
        grid-column: auto;
    }

    .filter-panel button {
        grid-column: auto;
    }

    .section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .sticky-side {
        position: static;
    }

    .panel {
        padding: 18px;
    }

    table { white-space: nowrap; }

    dl {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}

@media (max-width: 420px) {
    .hero h1 {
        font-size: 30px;
    }

    .price {
        font-size: 21px;
    }
}

/* Admin SaaS layout */
.admin-body {
    background: #f3f6f8;
}

.admin-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
}

.admin-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 22px 16px;
    background: #0f172a;
    color: #dbe4f0;
}

.admin-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    color: #fff;
    font-weight: 800;
    font-size: 18px;
}

.admin-menu {
    display: grid;
    gap: 6px;
}

.admin-menu a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0 12px;
    border-radius: 8px;
    color: #cbd5e1;
    font-weight: 700;
}

.admin-menu a:hover {
    background: rgba(255,255,255,.08);
    color: #fff;
}

.admin-main {
    min-width: 0;
}

.admin-topbar {
    min-height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 0 28px;
    border-bottom: 1px solid #e2e8f0;
    background: #fff;
}

.admin-topbar strong {
    display: block;
    color: #0f172a;
}

.admin-topbar span {
    color: #64748b;
    font-size: 14px;
}

.admin-top-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-content {
    width: min(1280px, calc(100% - 40px));
    margin: 24px auto 56px;
}

.admin-flash {
    width: min(1280px, calc(100% - 40px));
}

.admin-page-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 18px;
}

.admin-page-head h1 {
    margin: 0 0 6px;
    color: #0f172a;
    font-size: 28px;
}

.admin-page-head p {
    margin: 0;
    color: #64748b;
}

.compact-head {
    margin-bottom: 18px;
}

.admin-stat-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}

.admin-stat-grid.compact {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin-stat-card,
.admin-card {
    min-width: 0;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .04);
}

.admin-stat-card {
    padding: 18px;
}

.admin-stat-card span {
    display: block;
    margin-bottom: 10px;
    color: #64748b;
    font-size: 14px;
    font-weight: 700;
}

.admin-stat-card strong {
    color: #0f172a;
    font-size: 28px;
}

.admin-card {
    padding: 22px;
    margin-bottom: 18px;
}

.admin-card h2 {
    margin: 0 0 12px;
    color: #0f172a;
}

.admin-card p {
    color: #64748b;
    line-height: 1.65;
}

.admin-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.admin-mini-list {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.admin-mini-list span {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
    color: #64748b;
}

.admin-mini-list strong {
    color: #0f172a;
}

.admin-action-grid,
.admin-module-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 12px;
}

.admin-action-grid a {
    padding: 14px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #f8fafc;
    color: #0f172a;
    font-weight: 800;
}

.muted-card {
    background: #f8fafc;
}

.status-pill {
    display: inline-flex;
    margin-top: 10px;
    padding: 5px 9px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 13px;
}

.status-pill.on {
    background: #dcfce7;
    color: #166534;
}

.admin-cpc-inline input {
    max-width: 120px;
}

.admin-hero-head {
    padding: 24px;
    border: 1px solid #dbe5ee;
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(13, 92, 99, .10), rgba(242, 184, 75, .12)),
        #fff;
    box-shadow: 0 18px 48px rgba(15, 23, 42, .06);
}

.admin-kicker {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 6px 9px;
    border-radius: 999px;
    background: #e8f4f3;
    color: var(--brand);
    font-size: 13px;
    font-weight: 900;
}

.admin-head-actions,
.admin-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.admin-stat-grid.pro {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.admin-stat-card.accent {
    border-color: rgba(13, 92, 99, .28);
    background: #f1fbfa;
}

.admin-stat-card small {
    display: block;
    margin-top: 9px;
    color: #64748b;
    line-height: 1.35;
}

.admin-command-bar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}

.admin-command-bar a {
    display: grid;
    gap: 5px;
    min-height: 86px;
    padding: 16px;
    border: 1px solid #dfe8f0;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(15, 23, 42, .04);
}

.admin-command-bar strong {
    color: #0f172a;
    font-size: 16px;
}

.admin-command-bar span {
    color: #64748b;
    line-height: 1.35;
}

.admin-card-head {
    margin-bottom: 14px;
}

.admin-card-head h2 {
    margin: 0;
}

.admin-card-head a {
    color: var(--brand);
    font-weight: 800;
}

.admin-feed {
    display: grid;
    gap: 12px;
}

.admin-feed article {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 13px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #f8fafc;
}

.admin-feed strong {
    display: block;
    color: #0f172a;
}

.admin-feed span,
.admin-feed small {
    color: #64748b;
    line-height: 1.45;
}

.admin-feed b {
    color: var(--danger);
}

.compact-feed article {
    align-items: flex-start;
}

@media (max-width: 1100px) {
    .admin-shell {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: static;
        height: auto;
    }

    .admin-menu {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-stat-grid,
    .admin-stat-grid.compact,
    .admin-stat-grid.pro,
    .admin-command-bar,
    .admin-grid-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .admin-content,
    .admin-flash {
        width: min(100% - 20px, 1280px);
    }

    .admin-topbar,
    .admin-page-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-topbar {
        padding: 14px 16px;
    }

    .admin-top-actions {
        width: 100%;
        flex-wrap: wrap;
    }

    .admin-menu,
    .admin-stat-grid,
    .admin-stat-grid.compact,
    .admin-stat-grid.pro,
    .admin-command-bar,
    .admin-grid-2 {
        grid-template-columns: 1fr;
    }

    .admin-feed article,
    .message-card-head {
        align-items: flex-start;
        flex-direction: column;
    }
}


/* Admin Pro polish - sidebar fixes and modern surface */
.admin-body {
    background: linear-gradient(90deg, #0b1220 0, #0b1220 292px, #f4f7fb 292px, #f4f7fb 100%);
}

.admin-shell {
    grid-template-columns: 292px minmax(0, 1fr);
    align-items: stretch;
}

.admin-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    min-height: 100vh;
    overflow-y: auto;
    padding: 20px 14px 24px;
    background: linear-gradient(180deg, #0b1220 0%, #111827 52%, #0b1220 100%);
    border-right: 1px solid rgba(255,255,255,.08);
    box-shadow: 18px 0 45px rgba(15,23,42,.08);
    scrollbar-width: thin;
}

.admin-logo {
    min-height: 58px;
    margin: 0 4px 18px;
    padding: 10px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 16px;
    background: rgba(255,255,255,.05);
}

.admin-logo .brand-mark {
    border-radius: 14px;
    background: linear-gradient(135deg, var(--brand), #13a09b);
    box-shadow: 0 12px 26px rgba(13,92,99,.28);
}

.admin-logo span:last-child {
    display: grid;
    gap: 2px;
}

.admin-logo small {
    color: #94a3b8;
    font-size: 12px;
    font-weight: 700;
}

.admin-menu {
    display: grid;
    gap: 14px;
}

.admin-menu-group {
    display: grid;
    gap: 5px;
}

.admin-menu-title {
    margin: 6px 10px 3px;
    color: #64748b;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.admin-menu a {
    min-height: 40px;
    gap: 10px;
    padding: 0 12px;
    border: 1px solid transparent;
    border-radius: 12px;
    color: #cbd5e1;
    transition: background .16s ease, color .16s ease, border-color .16s ease, transform .16s ease;
}

.admin-menu a span {
    width: 24px;
    text-align: center;
    opacity: .94;
}

.admin-menu a:hover,
.admin-menu a.is-active {
    background: rgba(255,255,255,.09);
    border-color: rgba(255,255,255,.10);
    color: #fff;
    transform: translateX(2px);
}

.admin-menu a.is-active {
    background: linear-gradient(135deg, rgba(13,92,99,.95), rgba(18,147,142,.88));
    box-shadow: 0 12px 24px rgba(13,92,99,.22);
}

.admin-main {
    background: #f4f7fb;
}

.admin-topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    min-height: 74px;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 30px rgba(15,23,42,.04);
}

.admin-content {
    margin-top: 28px;
}

.admin-card,
.admin-stat-card,
.panel {
    border-radius: 16px;
    border-color: #dfe7f1;
    box-shadow: 0 16px 38px rgba(15,23,42,.055);
}

.admin-card h2,
.panel h1,
.section-head h1 {
    letter-spacing: -.02em;
}

.admin-tabs,
.tabs {
    padding: 8px;
    border: 1px solid #dce6ef;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(15,23,42,.04);
}

.tabs a {
    border-radius: 10px;
}

.admin-help-box {
    padding: 14px 16px;
    border: 1px solid #d8e6ef;
    border-radius: 14px;
    background: #f8fafc;
    color: #475569;
    line-height: 1.55;
}

@media (max-width: 1100px) {
    .admin-body {
        background: #f4f7fb;
    }
    .admin-shell {
        grid-template-columns: 1fr;
    }
    .admin-sidebar {
        position: static;
        height: auto;
        min-height: 0;
    }
    .admin-menu {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Admin Pro v3 - fixed sidebar, cleaner tables, bulk tools */
html, body.admin-body { min-height: 100%; }
.admin-body {
    background: #f4f7fb;
    color: #0f172a;
}
.admin-shell {
    display: grid;
    grid-template-columns: 292px minmax(0, 1fr);
    min-height: 100vh;
    background: linear-gradient(90deg, #0b1220 0, #0b1220 292px, #f4f7fb 292px, #f4f7fb 100%);
}
.admin-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    width: 292px;
    height: 100vh;
    min-height: 100vh;
    background: radial-gradient(circle at 10% 0%, rgba(20,184,166,.20), transparent 34%), linear-gradient(180deg, #07111f 0%, #101827 58%, #07111f 100%);
}
.admin-main {
    grid-column: 2;
    min-width: 0;
    min-height: 100vh;
}
.admin-topbar { border-bottom: 1px solid #e2e8f0; }
.admin-content { max-width: 1480px; margin: 28px auto 0; padding: 0 28px 44px; }
.admin-menu-group { padding: 8px; border: 1px solid rgba(255,255,255,.06); border-radius: 18px; background: rgba(255,255,255,.035); }
.admin-menu-title { color: #94a3b8; }
.admin-menu a { font-size: 14px; font-weight: 800; }
.admin-menu a.is-active { outline: 1px solid rgba(255,255,255,.15); }
.admin-card-head { gap: 16px; align-items: center; }
.admin-bulk-actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.admin-bulk-actions select { min-width: 210px; }
.responsive-table table { border-collapse: separate; border-spacing: 0; width: 100%; }
.responsive-table th { position: sticky; top: 74px; z-index: 2; background: #f8fafc; color: #334155; font-size: 12px; text-transform: uppercase; letter-spacing: .03em; }
.responsive-table td, .responsive-table th { border-bottom: 1px solid #e5edf5; vertical-align: middle; }
.responsive-table tbody tr:hover { background: #f8fafc; }
.button.small { min-height: 34px; padding: 0 12px; font-size: 13px; }
.inline.admin-cpc-inline { display: grid; grid-template-columns: 1fr 86px 96px auto; align-items: center; gap: 6px; }

@media (max-width: 1100px) {
    .admin-shell { display: block; background: #f4f7fb; }
    .admin-sidebar { position: static; width: auto; height: auto; min-height: 0; }
    .admin-main { min-height: auto; }
    .admin-content { padding: 0 16px 32px; }
    .inline.admin-cpc-inline { grid-template-columns: 1fr; }
}

/* SaaS v4 polish */
.saas-hero { background: radial-gradient(circle at top right, rgba(13,92,99,.18), transparent 38%), #fff; }
.saas-stats .stat-card { border: 1px solid #dce7f0; box-shadow: 0 16px 40px rgba(15,23,42,.06); }
.plan-list { display: grid; gap: 12px; }
.plan-row { display: grid; grid-template-columns: 1fr auto; gap: 4px 12px; padding: 14px; border: 1px solid #e2e8f0; border-radius: 16px; background: #f8fafc; }
.plan-row small { grid-column: 1 / -1; color: #64748b; }
.plan-card { border: 1px solid #dbe7f0; background: linear-gradient(180deg, #fff 0%, #f8fafc 100%); }
.plan-card h2 { margin: 12px 0 8px; }
.plan-card strong { display: block; font-size: 28px; margin-bottom: 8px; }
.plan-card strong small { font-size: 14px; color: #64748b; }
.grid-form .full { grid-column: 1 / -1; }
.badge { display: inline-flex; align-items: center; min-height: 24px; padding: 0 10px; border-radius: 999px; background: #e8f6f4; color: #0d5c63; font-weight: 800; font-size: 12px; }
.admin-sidebar { overflow-y: auto; scrollbar-width: thin; }
.admin-logo { position: sticky; top: 0; z-index: 5; backdrop-filter: blur(12px); background: rgba(7,17,31,.86); }
.admin-menu a span:first-child { width: 24px; display: inline-flex; justify-content: center; }

/* SaaS v4.1 - responsive admin table/form polish */
.admin-content { width: 100%; }
.admin-hero,
.admin-hero-head { overflow: hidden; }
.admin-card { overflow: hidden; }
.admin-grid-2 > .admin-card,
.grid.two > .admin-card { min-width: 0; }
.responsive-table {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    border: 1px solid #e5edf5;
    border-radius: 14px;
    background: #fff;
}
.responsive-table table {
    min-width: 760px;
    border-collapse: separate;
    border-spacing: 0;
}
.responsive-table th {
    position: static;
    top: auto;
    z-index: auto;
    white-space: nowrap;
    background: #f8fafc;
}
.responsive-table td {
    white-space: nowrap;
}
.responsive-table td:first-child,
.responsive-table th:first-child { padding-left: 16px; }
.responsive-table td:last-child,
.responsive-table th:last-child { padding-right: 16px; }
.dashboard-payment-table table { min-width: 620px; }
.dashboard-payment-table td:nth-child(2),
.dashboard-payment-table th:nth-child(2) { min-width: 160px; }
.empty-state {
    padding: 26px;
    border: 1px dashed #cbd5e1;
    border-radius: 14px;
    background: #f8fafc;
    color: #64748b;
    text-align: center;
    font-weight: 700;
}
.admin-saas-form {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}
.admin-saas-form label { min-width: 0; }
.admin-saas-form .form-section-title {
    grid-column: 1 / -1;
    margin: 8px 0 0;
    padding-top: 14px;
    border-top: 1px solid #e2e8f0;
    color: #0f172a;
    font-weight: 900;
}
.admin-saas-form .form-actions {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}
.saas-onboarding {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}
.saas-step {
    min-height: 112px;
    padding: 16px;
    border: 1px solid #dfe8f0;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(15,23,42,.04);
}
.saas-step b {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin-bottom: 10px;
    border-radius: 999px;
    background: #e8f6f4;
    color: var(--brand);
}
.saas-step strong { display: block; margin-bottom: 5px; }
.saas-step span { color: #64748b; font-size: 13px; line-height: 1.35; }
.company-card-name { display: grid; gap: 4px; }
.company-card-name small { color: #64748b; }
.status-pill.neutral { background: #e0f2fe; color: #075985; }
.status-pill.warn { background: #fef3c7; color: #92400e; }
.status-pill.danger { background: #fee2e2; color: #991b1b; }
.admin-table-actions { display: flex; gap: 8px; flex-wrap: wrap; }
@media (max-width: 1250px) {
    .admin-saas-form,
    .saas-onboarding { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
    .admin-saas-form,
    .saas-onboarding { grid-template-columns: 1fr; }
    .responsive-table table { min-width: 680px; }
}

/* Admin kullanıcı ekranı düzeltmesi */
.admin-user-list {
    display: grid;
    gap: 16px;
}
.admin-user-card {
    display: grid;
    gap: 14px;
    padding: 18px;
    border: 1px solid #e5edf5;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, .05);
}
.admin-user-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5edf5;
}
.admin-user-card-head strong,
.admin-user-card-head span {
    display: block;
}
.admin-user-card-head span {
    color: #64748b;
    font-size: 14px;
    margin-top: 4px;
}
.admin-user-edit-form {
    grid-template-columns: repeat(4, minmax(180px, 1fr));
    align-items: end;
}
.admin-user-edit-form label {
    min-width: 0;
}
.admin-user-actions,
.admin-user-delete {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}
.admin-user-actions {
    align-self: end;
}
.admin-user-delete {
    margin-top: -8px;
}
.admin-user-delete .danger-button {
    width: auto;
    min-width: 120px;
}
@media (max-width: 1100px) {
    .admin-user-form,
    .admin-user-edit-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 640px) {
    .admin-user-form,
    .admin-user-edit-form {
        grid-template-columns: 1fr;
    }
    .admin-user-card-head {
        align-items: flex-start;
        flex-direction: column;
    }
    .admin-user-actions,
    .admin-user-delete {
        justify-content: stretch;
    }
    .admin-user-actions .button,
    .admin-user-delete .danger-button {
        width: 100%;
    }
}

/* Admin Premium dokunuşlar - daha oturaklı görünüm ve çakışma önleme */
:root {
    --admin-bg: #f3f6fb;
    --admin-ink: #0f172a;
    --admin-muted: #64748b;
    --admin-line: #e2e8f0;
    --admin-soft: #f8fafc;
    --admin-radius: 20px;
    --admin-shadow: 0 18px 45px rgba(15, 23, 42, .07);
}

body.admin-body {
    background:
        radial-gradient(circle at 88% 4%, rgba(20, 184, 166, .14), transparent 28%),
        radial-gradient(circle at 35% 0%, rgba(242, 184, 75, .12), transparent 24%),
        var(--admin-bg);
    font-family: Inter, Arial, Helvetica, sans-serif;
}

.admin-shell {
    background: linear-gradient(90deg, #07111f 0, #07111f 292px, transparent 292px, transparent 100%);
}

.admin-sidebar {
    background:
        radial-gradient(circle at 18% 0%, rgba(20, 184, 166, .24), transparent 32%),
        radial-gradient(circle at 90% 30%, rgba(242, 184, 75, .12), transparent 28%),
        linear-gradient(180deg, #07111f 0%, #101827 54%, #07111f 100%);
}

.admin-logo {
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 14px 32px rgba(0,0,0,.15);
}

.admin-menu-group {
    box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}

.admin-menu a {
    min-width: 0;
    line-height: 1.25;
}

.admin-menu a:hover {
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.admin-main {
    background: transparent;
}

.admin-topbar {
    border-bottom: 1px solid rgba(226, 232, 240, .88);
    background: rgba(255, 255, 255, .86);
    backdrop-filter: blur(18px);
}

.admin-topbar strong {
    font-size: 18px;
    letter-spacing: -.01em;
}

.admin-content {
    max-width: 1540px;
}

.section-head,
.admin-page-head {
    padding: 20px 22px;
    border: 1px solid rgba(226, 232, 240, .92);
    border-radius: var(--admin-radius);
    background:
        linear-gradient(135deg, rgba(255,255,255,.96), rgba(248,250,252,.96)),
        #fff;
    box-shadow: var(--admin-shadow);
}

.section-head h1,
.admin-page-head h1 {
    font-size: clamp(24px, 2.2vw, 34px);
    letter-spacing: -.035em;
}

.panel,
.admin-card,
.admin-stat-card {
    border-radius: var(--admin-radius);
    border-color: rgba(226, 232, 240, .95);
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--admin-shadow);
}

.panel > h2,
.admin-card h2 {
    margin-top: 0;
    color: var(--admin-ink);
    letter-spacing: -.025em;
}

.form {
    gap: 16px;
}

.form label {
    gap: 8px;
    color: #475569;
    font-size: 14px;
    line-height: 1.25;
}

input,
select,
textarea {
    min-height: 46px;
    border-color: #d8e2ed;
    border-radius: 12px;
    background: #fff;
    transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: rgba(13, 92, 99, .58);
    box-shadow: 0 0 0 4px rgba(13, 92, 99, .11);
}

.button,
button {
    min-height: 44px;
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(13, 92, 99, .16);
    transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
}

.button:hover,
button:hover {
    transform: translateY(-1px);
    filter: saturate(1.08);
}

.button.secondary,
button.ghost {
    border-color: #d8e2ed;
    background: #fff;
    box-shadow: 0 10px 22px rgba(15, 23, 42, .06);
}

.danger-button {
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(180, 35, 24, .14);
}

.badge,
.status-pill {
    min-height: 28px;
    padding-inline: 12px;
    border: 1px solid rgba(13, 92, 99, .12);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.45);
}

.responsive-table {
    border-radius: 18px;
    border-color: #dfe8f0;
    box-shadow: 0 12px 30px rgba(15, 23, 42, .045);
}

.responsive-table th {
    background: linear-gradient(180deg, #f8fafc, #f1f5f9);
}

.responsive-table td {
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.admin-user-form {
    grid-template-columns: repeat(4, minmax(180px, 1fr));
    align-items: end;
}

.admin-user-form .button,
.admin-user-form button {
    width: 100%;
    min-height: 50px;
}

.admin-user-list {
    gap: 18px;
}

.admin-user-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    border-color: #dfe8f0;
    background:
        linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,250,252,.92)),
        #fff;
    box-shadow: 0 18px 42px rgba(15, 23, 42, .065);
}

.admin-user-card::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(180deg, var(--brand), var(--brand-2));
}

.admin-user-card-head {
    position: relative;
    padding-left: 6px;
}

.admin-user-card-head strong {
    color: var(--admin-ink);
    font-size: 16px;
    letter-spacing: -.01em;
}

.admin-user-card-head span {
    overflow-wrap: anywhere;
}

.admin-user-edit-form {
    grid-template-columns: repeat(4, minmax(190px, 1fr));
    gap: 14px;
    align-items: end;
}

.admin-user-edit-form input,
.admin-user-edit-form select {
    min-width: 0;
}

.admin-user-actions .button,
.admin-user-delete .danger-button {
    min-width: 138px;
}

.admin-user-delete {
    justify-content: flex-end;
    margin-top: -4px;
}

@media (max-width: 1280px) {
    .admin-user-form,
    .admin-user-edit-form {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .section-head,
    .admin-page-head {
        align-items: flex-start;
        flex-direction: column;
    }
    .admin-user-form,
    .admin-user-edit-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .admin-content {
        padding-inline: 12px;
    }
    .section-head,
    .admin-page-head,
    .panel,
    .admin-card,
    .admin-user-card {
        border-radius: 16px;
    }
    .admin-user-form,
    .admin-user-edit-form {
        grid-template-columns: 1fr;
    }
}
