:root {
    --bg: #000000;
    --surface: #0a0a0a;
    --surface-raised: #141414;
    --text: #ffffff;
    --muted: #c4c4c4;
    --border: #2a2a2a;
    --primary: #3b82f6;
    --primary-hover: #60a5fa;
    --accent-red: #ef4444;
    --accent-red-hover: #f87171;
    --danger: #ef4444;
    --danger-hover: #f87171;
    --success-bg: #0c1a2e;
    --success-text: #93c5fd;
    --error-bg: #1a0505;
    --error-text: #fca5a5;
    --radius: 10px;
    --shadow: 0 0 0 1px rgba(255, 255, 255, 0.04), 0 8px 24px rgba(0, 0, 0, 0.55);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    min-height: 100vh;
}

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

a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

.container {
    width: min(960px, calc(100% - 2rem));
    margin: 0 auto;
}

.site-header {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 0 rgba(239, 68, 68, 0.25), 0 8px 20px rgba(0, 0, 0, 0.4);
}

.nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 0;
}

.brand {
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    letter-spacing: 0.02em;
    flex-shrink: 0;
}

.brand:hover {
    color: var(--accent-red);
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
    flex: 1;
    min-width: 0;
}

.nav-links > a {
    color: var(--muted);
    text-decoration: none;
    background: none;
    border: 0;
    font: inherit;
    cursor: pointer;
    padding: 0.2rem 0;
}

.nav-links > a:hover {
    color: var(--primary);
}

.nav-user {
    position: relative;
    margin-left: auto;
    flex-shrink: 0;
}

.nav-user-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    max-width: 14rem;
    padding: 0.35rem 0.15rem 0.35rem 0.35rem;
    border: 0;
    background: transparent;
    color: var(--text);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.nav-user-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nav-user-caret {
    color: var(--primary);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.nav-user-trigger:hover .nav-user-name,
.nav-user.is-open .nav-user-name {
    color: var(--primary);
}

.nav-user-menu {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 0.35rem);
    min-width: 12rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.45rem;
    z-index: 40;
    box-shadow: var(--shadow);
}

.nav-user.is-open .nav-user-menu {
    display: block;
}

.nav-user-menu-meta {
    display: grid;
    gap: 0.15rem;
    padding: 0.45rem 0.55rem 0.55rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 0.35rem;
}

.nav-user-menu-role {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary);
}

.nav-user-menu-item {
    display: block;
    width: 100%;
    text-align: left;
    color: var(--text);
    text-decoration: none;
    padding: 0.55rem 0.6rem;
    border-radius: 6px;
    background: none;
    border: 0;
    font: inherit;
    cursor: pointer;
}

.nav-user-menu-item:hover {
    color: var(--accent-red);
    background: rgba(239, 68, 68, 0.1);
}


main {
    padding: 1.35rem 0 3rem;
}

.brand-context + main {
    padding-top: 1.1rem;
}


.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.5rem;
}

.hero {
    text-align: center;
    padding: 3rem 1.5rem;
    border-top: 2px solid var(--accent-red);
    border-bottom: 2px solid var(--primary);
}

.hero h1 {
    margin: 0 0 0.75rem;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    color: var(--text);
}

.hero p {
    margin: 0 auto 1.5rem;
    max-width: 40rem;
    color: var(--muted);
}

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

.page-header h1 {
    margin: 0;
    font-size: 1.6rem;
    color: var(--text);
}

.muted {
    color: var(--muted);
}

.stack {
    display: grid;
    gap: 1rem;
}

.form-group {
    display: grid;
    gap: 0.35rem;
}

label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
}

input[type="text"],
input[type="email"],
input[type="password"],
select,
textarea {
    width: 100%;
    padding: 0.7rem 0.8rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font: inherit;
    background: var(--surface-raised);
    color: var(--text);
}

select {
    cursor: pointer;
}


input::placeholder,
textarea::placeholder {
    color: #777;
}

textarea {
    min-height: 140px;
    resize: vertical;
}

input:focus,
textarea:focus {
    outline: 2px solid rgba(59, 130, 246, 0.45);
    border-color: var(--primary);
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    border: 0;
    border-radius: 8px;
    padding: 0.65rem 1rem;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}

.btn:hover {
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: #ffffff;
}

.btn-primary:hover {
    background: var(--primary-hover);
    color: #ffffff;
}

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

.btn-secondary:hover {
    background: rgba(59, 130, 246, 0.15);
    color: var(--primary-hover);
    border-color: var(--primary-hover);
}

.btn-danger {
    background: var(--danger);
    color: #ffffff;
}

.btn-danger:hover {
    background: var(--danger-hover);
    color: #ffffff;
}

.btn-row {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
}

.alert {
    border-radius: 8px;
    padding: 0.85rem 1rem;
    margin-bottom: 1rem;
}

.alert-success {
    background: var(--success-bg);
    color: var(--success-text);
    border: 1px solid var(--primary);
}

.alert-error {
    background: var(--error-bg);
    color: var(--error-text);
    border: 1px solid var(--accent-red);
}

.error-list {
    margin: 0;
    padding-left: 1.1rem;
}

.note-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

.note-item {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent-red);
    border-radius: 8px;
    background: var(--surface-raised);
}

.note-item h2,
.note-item h3 {
    margin: 0 0 0.25rem;
    font-size: 1.05rem;
}

.note-item h2 a,
.note-item h3 a {
    color: var(--text);
}

.note-item h2 a:hover,
.note-item h3 a:hover {
    color: var(--primary);
}

.note-item p {
    margin: 0;
    color: var(--muted);
}

.note-item .meta {
    margin-top: 0.35rem;
    font-size: 0.9rem;
    color: var(--primary);
}


.pagination {
    margin-top: 1.25rem;
}

.pagination nav > div {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.stat {
    background: var(--surface-raised);
    border: 1px solid var(--border);
    border-top: 2px solid var(--primary);
    border-radius: 8px;
    padding: 1rem;
}

.stat strong {
    display: block;
    font-size: 1.6rem;
    color: var(--accent-red);
}

.inline-form {
    display: inline;
}

.auth-card {
    max-width: 420px;
    margin: 0 auto;
    border-top: 2px solid var(--accent-red);
}

.auth-card h1 {
    margin-top: 0;
}

.footer-note {
    margin-top: 1rem;
    color: var(--muted);
    font-size: 0.95rem;
}

.table-wrap {
    overflow-x: auto;
}

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

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

.data-table th {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 600;
}

.table-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.role-badge {
    display: inline-block;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid var(--border);
}

.role-admin {
    color: var(--accent-red);
    border-color: var(--accent-red);
    background: rgba(239, 68, 68, 0.12);
}

.role-editor {
    color: var(--primary);
    border-color: var(--primary);
    background: rgba(59, 130, 246, 0.12);
}

.role-viewer {
    color: var(--text);
    border-color: var(--border);
    background: rgba(255, 255, 255, 0.06);
}

.role-user {
    color: var(--primary);
    border-color: var(--primary);
    background: rgba(59, 130, 246, 0.12);
}

.role-read_only {
    color: var(--muted);
    border-color: var(--border);
    background: rgba(255, 255, 255, 0.06);
}


.role-creator {
    color: var(--accent-red);
    border-color: var(--accent-red);
    background: rgba(239, 68, 68, 0.12);
}

.channel-detail {
    margin: 0.3rem 0 0;
    color: var(--muted);
    word-break: break-word;
    font-size: 0.92rem;
}

.channel-detail:first-child {
    margin-top: 0;
}

.channel-label {
    color: var(--text);
    font-weight: 700;
    margin-right: 0.35rem;
}

.platform-group {
    margin-bottom: 1.75rem;
}

.platform-group-title {
    margin: 0 0 0.85rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.4rem;
}

.channel-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.channel-preview-card {
    display: flex;
    flex-direction: column;
    min-height: 320px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.channel-preview-media {
    position: relative;
    height: 168px;
    flex-shrink: 0;
    background: #0a0a0a;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

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

.channel-preview-media-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.channel-preview-play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.65);
    border: 2px solid #fff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    padding-left: 0.15rem;
}

.channel-preview-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.45rem 0.6rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.3;
    max-height: 3.2rem;
    overflow: hidden;
}

.channel-preview-fallback,
.channel-preview-link-panel {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 1rem;
    text-align: center;
}

.channel-preview-fallback-label,
.channel-preview-link-title {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text);
}

.channel-preview-ig-photo {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #833ab4 0%, #fd1d1d 52%, #fcb045 100%);
    padding: 0.55rem;
    box-sizing: border-box;
}

.channel-preview-ig-photo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    max-height: 100%;
    text-decoration: none;
}

/* Override generic .channel-preview-media img fill rules */
.channel-preview-media .channel-preview-ig-photo-img {
    width: auto;
    height: 92%;
    max-height: 148px;
    max-width: min(92%, 148px);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 3px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.channel-preview-ig-photo-img.is-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.28);
    color: #fff;
    font-weight: 800;
    font-size: 1.5rem;
    width: 92%;
    max-width: 148px;
    height: 92%;
    max-height: 148px;
}

.channel-preview-ig {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 55%, #fcb045 100%);
}



.channel-preview-link-panel.other {
    background: linear-gradient(160deg, #141414 0%, #1e293b 100%);
}

.channel-preview-glyph {
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--primary);
    letter-spacing: 0.04em;
}

.channel-preview-link-sub {
    font-size: 0.9rem;
    color: var(--muted);
}

.channel-preview-x {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    background: linear-gradient(160deg, #0a0a0a 0%, #111827 100%);
}

.channel-preview-avatar {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    object-fit: cover;
    border: 2px solid var(--border);
    background: #222;
    flex-shrink: 0;
}

.channel-preview-avatar.is-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--text);
}

.channel-preview-x-text {
    min-width: 0;
    flex: 1;
}

.channel-preview-x-handle {
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.channel-preview-bio {
    margin: 0;
    font-size: 0.85rem;
    color: var(--muted);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.35;
}

.channel-preview-body {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    padding: 0.9rem 1rem 1rem;
    flex: 1;
}

.channel-preview-name {
    margin: 0;
    font-size: clamp(1.15rem, 2.4vw, 1.4rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: var(--text);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.06), 0 0 18px rgba(59, 130, 246, 0.18);
    word-break: break-word;
}

.channel-preview-inactive {
    display: inline-block;
    margin-left: 0.35rem;
    padding: 0.12rem 0.45rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    vertical-align: middle;
    color: var(--muted);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
    text-shadow: none;
}


.channel-actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 0.65rem;
}

.order-arrows {
    display: inline-flex;
    flex-direction: column;
    gap: 0.15rem;
}

.icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.35rem;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--surface-raised);
    color: var(--primary);
    font-size: 0.65rem;
    line-height: 1;
    cursor: pointer;
}

.icon-btn:hover:not(:disabled) {
    border-color: var(--primary);
    background: rgba(59, 130, 246, 0.12);
}

.icon-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    color: var(--muted);
}


.danger-zone {
    margin-top: 1.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}



.section-title {
    margin: 0 0 0.75rem;
    font-size: 1.05rem;
}

.nav-toggle {
    display: none;
    background: var(--surface-raised);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.45rem 0.75rem;
    font: inherit;
    cursor: pointer;
}

.brand-context {
    background: linear-gradient(180deg, #0d0d0d 0%, #000000 100%);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 0 rgba(239, 68, 68, 0.35);
    padding: 0.85rem 0 0.95rem;
}

.brand-context-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
}

.brand-context-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.2rem;
}

.brand-context-name {
    display: inline-block;
    font-size: clamp(1.45rem, 3.5vw, 1.9rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text);
    text-decoration: none;
    letter-spacing: 0.01em;
}

.brand-context-name:hover {
    color: var(--primary);
    text-decoration: none;
}

.nav-more {
    position: relative;
}

.nav-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
    color: var(--text);
    background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 1px solid var(--primary);
    border-radius: 8px;
    padding: 0.4rem 0.7rem;
    box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.15);
}

.nav-more-btn:hover,
.nav-more.is-open .nav-more-btn {
    background: rgba(59, 130, 246, 0.16);
    border-color: var(--primary-hover);
    color: #fff;
}

.nav-more-caret {
    font-size: 0.75rem;
    color: var(--primary);
    line-height: 1;
}

.nav-more.is-open .nav-more-caret {
    color: var(--primary-hover);
}

.nav-more-list {
    display: none;
    position: absolute;
    left: 0;
    top: calc(100% + 0.35rem);
    min-width: 10.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.45rem;
    z-index: 30;
    gap: 0.15rem;
    box-shadow: var(--shadow);
}

/* Only show when JS adds .is-open — never open by default */
.nav-more.is-open .nav-more-list {
    display: grid;
}

.nav-more-list a {
    display: block;
    width: 100%;
    text-align: left;
    color: var(--muted);
    text-decoration: none;
    padding: 0.45rem 0.55rem;
    border-radius: 6px;
    font: inherit;
}

.nav-more-list a:hover {
    color: var(--primary);
    background: rgba(59, 130, 246, 0.1);
    text-decoration: none;
}

.control-panel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
}

.control-panel-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.control-panel-card-title {
    margin: 0;
    font-size: 1.15rem;
}

.control-panel-card-desc {
    margin: 0;
    flex: 1;
}

.control-panel-subnav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.control-panel-subnav a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.control-panel-subnav a:hover,
.control-panel-subnav a.is-active {
    color: var(--primary);
}




.filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.75rem;
    align-items: end;
}

.channel-fieldset {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1rem;
    margin: 0;
}

.channel-fieldset legend {
    padding: 0 0.35rem;
    color: var(--muted);
    font-weight: 600;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.35rem;
}

.cal-dow {
    font-size: 0.75rem;
    color: var(--muted);
    text-align: center;
    font-weight: 600;
}

.cal-cell {
    min-height: 4.5rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 0.35rem;
    background: var(--surface-raised);
}

.cal-cell.is-empty {
    background: transparent;
    border-color: transparent;
}

.cal-daynum {
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 0.25rem;
}

.cal-item {
    display: block;
    font-size: 0.72rem;
    color: var(--primary);
    margin-bottom: 0.2rem;
    line-height: 1.2;
}

code {
    color: var(--primary);
    word-break: break-all;
}

@media (max-width: 768px) {
    .nav {
        flex-wrap: wrap;
    }

    .nav-toggle {
        display: inline-flex;
        margin-left: auto;
        order: 2;
    }

    .nav-user {
        order: 3;
        margin-left: 0;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.85rem;
        padding: 0.75rem 0 0.25rem;
        order: 4;
        flex: 1 1 100%;
    }

    .nav-links.is-open {
        display: flex;
    }

    .nav-more-list,
    .nav-user-menu {
        position: static;
        box-shadow: none;
        min-width: 0;
        width: 100%;
    }

    .nav-user {
        position: static;
    }

    .nav-user-menu {
        margin-top: 0.35rem;
    }



    .calendar-grid-wrap {
        display: none;
    }

    .data-table thead {
        display: none;
    }

    .data-table tr {
        display: block;
        border: 1px solid var(--border);
        border-radius: 8px;
        margin-bottom: 0.75rem;
        padding: 0.5rem;
        background: var(--surface-raised);
    }

    .data-table td {
        display: flex;
        justify-content: space-between;
        gap: 0.75rem;
        border: 0;
        padding: 0.4rem 0.25rem;
    }

    .data-table td::before {
        content: attr(data-label);
        color: var(--muted);
        font-weight: 600;
    }

    .table-actions {
        justify-content: flex-start;
    }
}


