:root {
    /* Abans brand palette */
    --primary: #e31837;
    --primary-dark: #b01028;
    --primary-darker: #7a0a1a;
    --primary-light: #fde8ec;
    --primary-soft: #fff5f6;
    --accent: #c41230;
    --success: #16a34a;
    --success-bg: #dcfce7;
    --warning: #d97706;
    --warning-bg: #fef3c7;
    --danger: #dc2626;
    --danger-bg: #fee2e2;
    --bg: #faf8f8;
    --bg-subtle: #f5f0f1;
    --card: #ffffff;
    --border: #ecd8dc;
    --border-strong: #ddb8c0;
    --text: #1a0a0e;
    --text-secondary: #5c3d45;
    --muted: #8a6b73;
    --shadow-sm: 0 1px 3px rgba(122, 10, 26, 0.08);
    --shadow: 0 4px 20px rgba(122, 10, 26, 0.1);
    --shadow-lg: 0 12px 40px rgba(122, 10, 26, 0.14);
    --radius: 12px;
    --radius-lg: 16px;
    --transition: 0.2s ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: var(--bg);
    background-image: radial-gradient(ellipse at top left, rgba(227, 24, 55, 0.04) 0%, transparent 55%);
    color: var(--text);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

.container {
    width: min(1280px, 94%);
    margin: 0 auto;
}

/* ── Topbar ── */
.topbar {
    background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 45%, var(--primary) 100%);
    color: #fff;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid rgba(255, 255, 255, 0.12);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    gap: 1rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: #fff;
    text-decoration: none;
}

.brand:hover {
    color: #fff;
    opacity: 0.95;
}

.brand-logo {
    height: 44px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    background: #fff;
    border-radius: 10px;
    padding: 5px 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.brand-company {
    font-size: 0.72rem;
    font-weight: 500;
    opacity: 0.85;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.brand-app {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    padding: 0.45rem 0.85rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background var(--transition);
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.admin-pill {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    padding: 0.35rem 0.85rem;
    font-size: 0.85rem;
    color: #e2e8f0;
}

.admin-pill::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
}

.topbar .btn-outline {
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
    background: transparent;
}

.topbar .btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
}

.topbar .btn-primary {
    background: #fff;
    color: var(--primary-dark);
    box-shadow: var(--shadow-sm);
}

.topbar .btn-primary:hover {
    background: var(--primary-soft);
    color: var(--primary-darker);
}

/* ── Layout ── */
.main-content {
    padding: 1.75rem 0 3rem;
}

.page-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.page-header-actions {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

h1 {
    margin: 0 0 0.3rem;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text);
}

.subtitle {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ── Cards ── */
.card,
.stat-card,
.login-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.card {
    padding: 1.5rem;
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.card-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.card-meta {
    color: var(--muted);
    font-size: 0.88rem;
}

/* ── Stats ── */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-card {
    padding: 1.25rem 1.35rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: transform var(--transition), box-shadow var(--transition);
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.stat-icon-blue { background: var(--primary-light); }
.stat-icon-green { background: #dcfce7; }
.stat-icon-amber { background: #fef3c7; }

.stat-body {
    min-width: 0;
}

.stat-label {
    display: block;
    color: var(--muted);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.15rem;
}

.stat-value {
    font-size: 1.85rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

/* ── Search ── */
.search-panel {
    background: var(--bg-subtle);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
    margin-bottom: 1.25rem;
}

.search-bar {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    align-items: center;
}

.search-input-wrap {
    flex: 1;
    min-width: 240px;
    position: relative;
}

.search-input-wrap::before {
    content: "🔍";
    position: absolute;
    left: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9rem;
    opacity: 0.5;
    pointer-events: none;
}

.search-bar input[type="text"] {
    width: 100%;
    padding: 0.75rem 0.85rem 0.75rem 2.4rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    font: inherit;
    background: #fff;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.search-bar input[type="text"]:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(227, 24, 55, 0.15);
}

/* ── Table ── */
.table-wrap {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.data-table th,
.data-table td {
    padding: 0.9rem 1rem;
    border-bottom: 1px solid var(--border);
    text-align: left;
    vertical-align: middle;
}

.data-table th {
    background: #f8fafc;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted);
    font-weight: 600;
    white-space: nowrap;
    position: sticky;
    top: 0;
}

.data-table tbody tr {
    transition: background var(--transition);
}

.data-table tbody tr:hover td {
    background: #f8fafc;
}

.data-table tbody tr:last-child td {
    border-bottom: none;
}

.cell-primary {
    font-weight: 600;
    color: var(--text);
}

.cell-secondary {
    display: block;
    color: var(--muted);
    font-size: 0.82rem;
    margin-top: 0.15rem;
}

.cell-mono {
    font-family: "Cascadia Code", "Consolas", monospace;
    font-size: 0.85rem;
    color: var(--primary-dark);
    font-weight: 500;
}

.empty-state {
    text-align: center;
    color: var(--muted);
    padding: 3rem 1.5rem !important;
}

.empty-state-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    opacity: 0.4;
}

/* ── Actions ── */
.action-group {
    display: flex;
    gap: 0.35rem;
    flex-wrap: wrap;
}

.action-group form {
    display: inline;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border: none;
    border-radius: 10px;
    padding: 0.65rem 1.1rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    font-family: inherit;
    line-height: 1.2;
}

.btn-sm {
    padding: 0.42rem 0.75rem;
    font-size: 0.8rem;
    border-radius: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(227, 24, 55, 0.35);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-darker) 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(227, 24, 55, 0.4);
}

.btn-secondary {
    background: var(--bg-subtle);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: #e2e8f0;
}

.btn-outline {
    background: #fff;
    border: 1px solid var(--border-strong);
    color: var(--text);
}

.btn-outline:hover {
    background: var(--bg-subtle);
    border-color: var(--muted);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid transparent;
}

.btn-ghost:hover {
    background: var(--bg-subtle);
}

.btn-success {
    background: var(--success-bg);
    color: var(--success);
    border: 1px solid #86efac;
}

.btn-warning {
    background: var(--warning-bg);
    color: var(--warning);
    border: 1px solid #fcd34d;
}

.btn-block {
    width: 100%;
}

.btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none !important;
}

/* ── Badges ── */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.badge::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.7;
}

.badge-success {
    background: var(--success-bg);
    color: var(--success);
}

.badge-warning {
    background: var(--warning-bg);
    color: var(--warning);
}

.badge-danger {
    background: var(--danger-bg);
    color: var(--danger);
}

.badge-neutral {
    background: #f1f5f9;
    color: var(--muted);
}

/* ── Forms ── */
.form-group {
    margin-bottom: 1.1rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 0.4rem;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text);
}

.label-required::after {
    content: "*";
    color: var(--danger);
    margin-left: 0.1rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.72rem 0.9rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    font: inherit;
    background: #fff;
    color: var(--text);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(227, 24, 55, 0.12);
}

.form-group input[readonly] {
    background: var(--bg-subtle);
    color: var(--text-secondary);
    cursor: not-allowed;
}

.form-group input::placeholder {
    color: #94a3b8;
}

.grid-form {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 0 1.25rem;
}

/* ── Form sections ── */
.form-section {
    margin-bottom: 2rem;
    background: var(--primary-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.form-section-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.1rem 1.35rem;
    background: linear-gradient(to right, #fff, var(--primary-soft));
    border-bottom: 1px solid var(--border);
}

.section-number {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(227, 24, 55, 0.3);
}

.form-section-header h2 {
    margin: 0 0 0.2rem;
    font-size: 1.05rem;
    font-weight: 600;
}

.form-section-header p {
    margin: 0;
    color: var(--muted);
    font-size: 0.88rem;
}

.form-section-body {
    padding: 1.35rem;
}

.form-card {
    padding: 0;
    overflow: hidden;
    border: none;
    background: transparent;
    box-shadow: none;
}

.form-card > form > .form-section:first-child {
    margin-top: 0;
}

/* ── Tips banner ── */
.tips-card {
    background: linear-gradient(135deg, var(--primary-soft) 0%, #fff 100%);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.tips-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1.25rem;
    cursor: pointer;
    user-select: none;
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 0.92rem;
}

.tips-header:hover {
    background: rgba(227, 24, 55, 0.04);
}

.tips-toggle {
    font-size: 0.8rem;
    color: var(--muted);
}

.tips-body {
    padding: 0 1.25rem 1.1rem;
    display: grid;
    gap: 0.5rem;
}

.tip-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.tip-item::before {
    content: "✓";
    background: var(--primary);
    color: #fff;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0.65rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.tips-card.collapsed .tips-body {
    display: none;
}

.account-status-preview {
    background: #fff;
    border: 1px dashed var(--border-strong);
    border-radius: 10px;
    padding: 0.85rem 1rem;
    display: grid;
    gap: 0.5rem;
    margin-top: -0.25rem;
}

.preview-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.88rem;
}

.preview-row span {
    color: var(--muted);
    font-weight: 500;
}

.preview-row strong {
    font-family: "Cascadia Code", "Consolas", monospace;
    color: var(--primary-dark);
}

/* ── Input copy ── */
.input-copy-wrap {
    display: flex;
    gap: 0.45rem;
    align-items: stretch;
}

.input-copy-wrap input,
.input-copy-wrap select {
    flex: 1;
    min-width: 0;
}

.btn-copy {
    flex-shrink: 0;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--text-secondary);
    border-radius: 10px;
    padding: 0 0.85rem;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all var(--transition);
    font-family: inherit;
}

.btn-copy:hover {
    background: var(--primary-light);
    border-color: var(--border-strong);
    color: var(--primary-dark);
}

.btn-copy.copied {
    background: var(--success-bg);
    border-color: #86efac;
    color: var(--success);
}

.field-linked .input-copy-wrap input,
.field-linked .input-copy-wrap select {
    border-left: 3px solid var(--primary);
}

.password-wrap {
    flex-wrap: wrap;
}

.password-wrap input {
    flex: 1 1 200px;
}

.hint {
    display: block;
    margin-top: 0.4rem;
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 1.45;
}

/* ── Sticky form footer ── */
.form-sticky-footer {
    position: sticky;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-top: 1px solid var(--border);
    padding: 1rem 1.35rem;
    margin: 0 -0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.06);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.form-sticky-footer .form-actions {
    margin: 0;
}

.form-actions {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
}

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

/* ── Alerts ── */
.alert {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.95rem 1.1rem;
    border-radius: var(--radius);
    margin-bottom: 1.25rem;
    font-weight: 500;
    font-size: 0.92rem;
    border: 1px solid transparent;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.alert-success {
    background: var(--success-bg);
    color: #166534;
    border-color: #86efac;
}

.alert-error {
    background: var(--danger-bg);
    color: #991b1b;
    border-color: #fca5a5;
}

.alert-dismiss {
    margin-left: auto;
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.6;
    padding: 0;
    line-height: 1;
    color: inherit;
}

.alert-dismiss:hover {
    opacity: 1;
}

/* ── Pagination ── */
.table-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

.pagination {
    display: flex;
    gap: 0.35rem;
    align-items: center;
}

.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 0.5rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    background: #fff;
    font-size: 0.88rem;
    font-weight: 500;
    transition: all var(--transition);
}

.page-link:hover {
    background: var(--bg-subtle);
    border-color: var(--border-strong);
}

.page-link.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.page-link.disabled {
    opacity: 0.4;
    pointer-events: none;
}

.page-ellipsis {
    color: var(--muted);
    padding: 0 0.25rem;
    font-size: 0.88rem;
}

/* ── Login ── */
.login-page {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.login-brand-panel {
    background: linear-gradient(145deg, var(--primary-darker) 0%, var(--primary-dark) 40%, var(--primary) 100%);
    color: #fff;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.login-brand-panel::before {
    content: "";
    position: absolute;
    top: -20%;
    right: -15%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.login-logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    object-fit: contain;
    background: #fff;
    border-radius: 14px;
    padding: 1.1rem 1.75rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.login-brand-panel h1 {
    color: #fff;
    font-size: 1.85rem;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.login-tagline,
.login-brand-panel p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.02rem;
    line-height: 1.65;
    max-width: 420px;
    position: relative;
    z-index: 1;
}

.login-features {
    margin-top: 2.5rem;
    display: grid;
    gap: 1rem;
}

.login-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.login-feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-size: 1.1rem;
}

.login-form-panel {
    display: grid;
    place-items: center;
    padding: 2rem;
    background: var(--bg);
    background-image: radial-gradient(ellipse at bottom right, rgba(227, 24, 55, 0.06) 0%, transparent 60%);
}

.login-card {
    width: min(400px, 100%);
    padding: 2.25rem;
    border-top: 4px solid var(--primary);
}

.login-card-logo {
    display: block;
    max-width: 200px;
    width: 100%;
    height: auto;
    margin: 0 auto 1.25rem;
    object-fit: contain;
}

.login-card h2 {
    margin: 0 0 0.35rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.login-card .subtitle {
    margin-bottom: 1.75rem;
}

.login-body .footer {
    display: none;
}

/* ── Footer ── */
.footer {
    padding: 1.5rem 0 2rem;
    color: var(--muted);
    text-align: center;
    font-size: 0.85rem;
    border-top: 1px solid var(--border);
    background: #fff;
    margin-top: 1rem;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo {
    height: 36px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    opacity: 0.85;
}

.login-body {
    background: var(--bg);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .login-page {
        grid-template-columns: 1fr;
    }

    .login-brand-panel {
        padding: 2rem;
        min-height: auto;
    }

    .login-features {
        display: none;
    }
}

@media (max-width: 768px) {
    .brand-text {
        display: none;
    }

    .brand-logo {
        max-width: 120px;
        height: 38px;
    }

    .topbar-inner {
        flex-direction: column;
        align-items: stretch;
        padding: 0.75rem 0;
        min-height: auto;
    }

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

    .page-header {
        flex-direction: column;
    }

    .page-header-actions {
        width: 100%;
    }

    .page-header-actions .btn {
        flex: 1;
    }

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

    .action-group {
        flex-direction: column;
    }

    .action-group .btn {
        width: 100%;
    }

    .form-sticky-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .form-sticky-footer .form-actions {
        width: 100%;
    }

    .form-sticky-footer .form-actions .btn {
        flex: 1;
    }

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

    .data-table th:nth-child(4),
    .data-table td:nth-child(4),
    .data-table th:nth-child(5),
    .data-table td:nth-child(5) {
        display: none;
    }
}
