forked from jamesp/sasa-membership
d024bf7fa3
- ui has been made 'kinda better' (after making it worse for a while lol - ESP rfid readers are now supported [ill upload the code for them in another repo later] - admin system has been secured a bit better and seems to be working well
4467 lines
82 KiB
CSS
4467 lines
82 KiB
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
:root {
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
|
|
line-height: 1.45;
|
|
font-weight: 400;
|
|
color: #e6ebf2;
|
|
background-color: #131416;
|
|
--ops-bg: #131416;
|
|
--ops-top: #282b2f;
|
|
--ops-surface: #181a1d;
|
|
--ops-surface-muted: #202328;
|
|
--ops-surface-strong: #111214;
|
|
--ops-border: rgba(70, 75, 83, 0.9);
|
|
--ops-border-soft: rgba(42, 45, 50, 0.92);
|
|
--ops-text: #e6ebf2;
|
|
--ops-muted: #8d96a3;
|
|
--ops-subtle: #c6ced8;
|
|
--ops-accent: #4797ff;
|
|
--ops-accent-dark: #006eff;
|
|
--ops-accent-soft: rgba(71, 151, 255, 0.12);
|
|
--ops-accent-mid: rgba(71, 151, 255, 0.2);
|
|
--ops-accent-wash: #11161d;
|
|
--ops-coral: #ee6368;
|
|
--ops-coral-soft: rgba(238, 99, 104, 0.12);
|
|
--ops-danger: #ee6368;
|
|
--ops-danger-soft: rgba(92, 31, 33, 0.4);
|
|
--ops-warning: #ffb84c;
|
|
--ops-warning-soft: rgba(255, 184, 76, 0.12);
|
|
--ops-success: #2fa252;
|
|
--ops-success-soft: rgba(47, 162, 82, 0.13);
|
|
--ops-radius: 8px;
|
|
}
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
min-height: 100vh;
|
|
background: var(--ops-bg);
|
|
color: var(--ops-text);
|
|
font-size: 12px;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
#root {
|
|
min-height: 100vh;
|
|
}
|
|
|
|
.app-shell {
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.app-main {
|
|
flex: 1 0 auto;
|
|
}
|
|
|
|
.container {
|
|
max-width: 1380px;
|
|
margin: 0 auto;
|
|
padding: 24px 20px 28px;
|
|
}
|
|
|
|
.portal-topbar {
|
|
min-height: 44px;
|
|
display: grid;
|
|
grid-template-columns: 280px minmax(0, 1fr) auto;
|
|
gap: 12px;
|
|
align-items: center;
|
|
padding: 10px 12px;
|
|
background: var(--ops-top);
|
|
border-bottom: 1px solid var(--ops-border-soft);
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 40;
|
|
}
|
|
|
|
.portal-topbar-admin {
|
|
grid-template-columns: 280px auto;
|
|
justify-content: space-between;
|
|
background: #282b2f;
|
|
}
|
|
|
|
.portal-brand {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 9px;
|
|
min-width: 0;
|
|
}
|
|
|
|
.portal-mark {
|
|
width: 22px;
|
|
height: 22px;
|
|
display: grid;
|
|
place-items: center;
|
|
border-radius: 6px;
|
|
background: var(--ops-accent-dark);
|
|
color: #fff;
|
|
font-weight: 600;
|
|
font-size: 12px;
|
|
letter-spacing: -0.03em;
|
|
flex: 0 0 auto;
|
|
}
|
|
|
|
.portal-brand-text {
|
|
min-width: 0;
|
|
}
|
|
|
|
.portal-brand-text h1 {
|
|
margin: 0;
|
|
font-size: 13px;
|
|
line-height: 1.1;
|
|
color: #f3f6fa;
|
|
font-weight: 520;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.portal-subtitle {
|
|
margin-top: 2px;
|
|
font-size: 11px;
|
|
color: #aab2bd;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.portal-nav {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 4px;
|
|
min-width: 0;
|
|
overflow-x: auto;
|
|
scrollbar-width: none;
|
|
}
|
|
|
|
.portal-nav::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
|
|
.portal-tab,
|
|
.portal-switch-button,
|
|
.portal-exit-button {
|
|
min-height: 30px;
|
|
padding: 7px 12px;
|
|
border-radius: 6px;
|
|
font-size: 12px;
|
|
font-weight: 500;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.portal-tab {
|
|
border: 1px solid transparent;
|
|
background: transparent;
|
|
color: #c7cdd6;
|
|
}
|
|
|
|
.portal-tab:hover {
|
|
background: rgba(5, 37, 77, 0.75);
|
|
color: #fff;
|
|
border-color: transparent;
|
|
}
|
|
|
|
.portal-tab.active {
|
|
background: #34383e;
|
|
color: #fff;
|
|
border-color: #34383e;
|
|
}
|
|
|
|
.portal-switch-button,
|
|
.portal-exit-button {
|
|
border: 1px solid rgba(71, 151, 255, 0.72);
|
|
background: transparent;
|
|
color: var(--ops-accent);
|
|
}
|
|
|
|
.portal-switch-button:hover,
|
|
.portal-exit-button:hover {
|
|
background: rgba(5, 37, 77, 0.75);
|
|
border-color: var(--ops-accent);
|
|
color: #fff;
|
|
}
|
|
|
|
.portal-meta {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
gap: 8px;
|
|
}
|
|
|
|
.admin-brand-text .portal-subtitle { color: #8d96a3; }
|
|
|
|
.portal-container {
|
|
padding-top: 18px;
|
|
}
|
|
|
|
.portal-container-admin {
|
|
max-width: none;
|
|
width: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.card {
|
|
background: rgba(24, 27, 31, 0.96);
|
|
border-top: 1px solid rgba(70, 76, 86, 0.7);
|
|
border-bottom: 1px solid rgba(34, 38, 44, 0.96);
|
|
border-left: 1px solid rgba(42, 46, 52, 0.85);
|
|
border-right: 1px solid rgba(42, 46, 52, 0.85);
|
|
border-radius: 3px;
|
|
padding: 18px 18px 19px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.btn {
|
|
padding: 9px 15px;
|
|
border: 1px solid rgba(71, 151, 255, 0.72);
|
|
border-radius: var(--ops-radius);
|
|
font-size: 12px;
|
|
cursor: pointer;
|
|
transition: all 0.2s;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.btn-primary {
|
|
background: transparent;
|
|
color: var(--ops-accent);
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
background: rgba(5, 37, 77, 0.75);
|
|
color: #fff;
|
|
}
|
|
|
|
.btn-secondary {
|
|
background-color: var(--ops-surface-muted);
|
|
border-color: var(--ops-border);
|
|
color: var(--ops-text);
|
|
}
|
|
|
|
.btn-secondary:hover {
|
|
background-color: rgba(255, 255, 255, 0.05);
|
|
border-color: #5a626d;
|
|
color: #fff;
|
|
}
|
|
|
|
.btn-danger {
|
|
background-color: transparent;
|
|
border-color: rgba(238, 99, 104, 0.68);
|
|
color: #ffa2a6;
|
|
}
|
|
|
|
.btn-danger:hover {
|
|
background-color: rgba(92, 31, 33, 0.75);
|
|
border-color: var(--ops-danger);
|
|
color: #ffe2e4;
|
|
}
|
|
|
|
.form-group {
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.form-group label {
|
|
display: block;
|
|
margin-bottom: 6px;
|
|
font-weight: 500;
|
|
color: var(--ops-text);
|
|
}
|
|
|
|
.form-group input,
|
|
.form-group textarea,
|
|
.form-group select {
|
|
width: 100%;
|
|
padding: 8px 9px;
|
|
border: 1px solid var(--ops-border);
|
|
border-radius: var(--ops-radius);
|
|
font-size: 12px;
|
|
background: #111214;
|
|
color: var(--ops-text);
|
|
}
|
|
|
|
.form-group input:focus,
|
|
.form-group textarea:focus,
|
|
.form-group select:focus {
|
|
outline: none;
|
|
border-color: var(--ops-accent);
|
|
box-shadow: 0 0 0 3px rgba(11, 93, 125, 0.12);
|
|
}
|
|
|
|
.alert {
|
|
padding: 12px 16px;
|
|
border-radius: 6px;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.alert-success {
|
|
background-color: var(--ops-success-soft);
|
|
color: var(--ops-success);
|
|
border: 1px solid rgba(47, 162, 82, 0.36);
|
|
}
|
|
|
|
.alert-error {
|
|
background-color: var(--ops-coral-soft);
|
|
color: #ffd7df;
|
|
border: 1px solid rgba(238, 99, 104, 0.42);
|
|
}
|
|
|
|
.alert-warning {
|
|
background-color: var(--ops-warning-soft);
|
|
color: var(--ops-warning);
|
|
border: 1px solid rgba(255, 184, 76, 0.28);
|
|
}
|
|
|
|
.navbar {
|
|
background: #111923;
|
|
color: var(--ops-text);
|
|
padding: 16px 24px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
border-bottom: 1px solid rgba(120, 160, 196, 0.18);
|
|
}
|
|
|
|
.navbar h1 {
|
|
margin: 0;
|
|
font-size: 19px;
|
|
color: #f3f8fc;
|
|
letter-spacing: 0.01em;
|
|
}
|
|
|
|
.navbar button {
|
|
background: rgba(14, 24, 37, 0.94);
|
|
color: var(--ops-text);
|
|
border: 1px solid var(--ops-border);
|
|
padding: 8px 16px;
|
|
border-radius: var(--ops-radius);
|
|
cursor: pointer;
|
|
}
|
|
|
|
.navbar button:hover {
|
|
background: var(--ops-accent-soft);
|
|
border-color: #b8d5e4;
|
|
color: var(--ops-accent);
|
|
}
|
|
|
|
.auth-shell {
|
|
min-height: 100vh;
|
|
display: grid;
|
|
grid-template-rows: auto 1fr;
|
|
background: var(--ops-bg);
|
|
}
|
|
|
|
.auth-topbar {
|
|
min-height: 44px;
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 9px 12px;
|
|
background: var(--ops-top);
|
|
border-bottom: 1px solid var(--ops-border-soft);
|
|
}
|
|
|
|
.auth-container {
|
|
min-height: calc(100vh - 44px);
|
|
display: grid;
|
|
grid-template-columns: minmax(280px, 420px) minmax(320px, 420px);
|
|
justify-content: center;
|
|
align-content: center;
|
|
gap: 18px;
|
|
padding: 20px;
|
|
}
|
|
|
|
.auth-welcome-card,
|
|
.auth-card {
|
|
border: 1px solid var(--ops-border-soft);
|
|
border-radius: var(--ops-radius);
|
|
background: transparent;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.auth-welcome-card {
|
|
padding: 26px;
|
|
display: grid;
|
|
gap: 14px;
|
|
}
|
|
|
|
.auth-kicker {
|
|
font-size: 11px;
|
|
color: #aab2bd;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.06em;
|
|
}
|
|
|
|
.auth-welcome-card h2 {
|
|
margin: 0;
|
|
font-size: 26px;
|
|
color: #f3f6fa;
|
|
}
|
|
|
|
.auth-welcome-card p {
|
|
color: var(--ops-subtle);
|
|
font-size: 14px;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.auth-card {
|
|
width: 100%;
|
|
max-width: 420px;
|
|
}
|
|
|
|
.auth-card-head {
|
|
min-height: 40px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 12px;
|
|
padding: 0 12px;
|
|
border-bottom: 1px solid var(--ops-border-soft);
|
|
}
|
|
|
|
.auth-card-head h2 {
|
|
margin: 0;
|
|
font-size: 12px;
|
|
font-weight: 500;
|
|
color: #f3f6fa;
|
|
}
|
|
|
|
.auth-card-head span {
|
|
color: var(--ops-muted);
|
|
font-size: 11px;
|
|
}
|
|
|
|
.auth-card form,
|
|
.auth-footer {
|
|
padding: 11px;
|
|
}
|
|
|
|
.auth-submit {
|
|
width: 100%;
|
|
margin-top: 8px;
|
|
}
|
|
|
|
.auth-footer {
|
|
display: grid;
|
|
gap: 12px;
|
|
border-top: 1px solid var(--ops-border-soft);
|
|
text-align: center;
|
|
color: var(--ops-muted);
|
|
}
|
|
|
|
.auth-footer a {
|
|
color: var(--ops-accent);
|
|
text-decoration: none;
|
|
}
|
|
|
|
.auth-footer a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.dashboard-grid {
|
|
display: grid;
|
|
grid-template-columns: 1fr;
|
|
gap: 22px;
|
|
margin-top: 18px;
|
|
}
|
|
|
|
.dashboard-tabs {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 8px;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.navbar-main {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 14px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.profile-menu {
|
|
position: relative;
|
|
}
|
|
|
|
.profile-menu-trigger {
|
|
background: var(--ops-surface-muted);
|
|
border: 1px solid rgba(120, 160, 196, 0.16);
|
|
color: #f3f8fc;
|
|
cursor: pointer;
|
|
font-size: 14px;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
padding: 9px 12px;
|
|
border-radius: 999px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.profile-menu-chevron {
|
|
font-size: 11px;
|
|
color: var(--ops-muted);
|
|
}
|
|
|
|
.profile-menu-dropdown {
|
|
position: absolute;
|
|
top: calc(100% + 10px);
|
|
right: 0;
|
|
min-width: 320px;
|
|
max-width: 360px;
|
|
z-index: 1000;
|
|
background: var(--ops-surface);
|
|
border: 1px solid var(--ops-border);
|
|
border-radius: 8px;
|
|
box-shadow: none;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.profile-menu-summary {
|
|
padding: 18px;
|
|
border-bottom: 1px solid var(--ops-border-soft);
|
|
background: var(--ops-surface-muted);
|
|
}
|
|
|
|
.profile-menu-summary-head {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
gap: 10px;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.profile-menu-summary-head h4 {
|
|
margin: 0;
|
|
font-size: 13px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.05em;
|
|
color: var(--ops-muted);
|
|
}
|
|
|
|
.profile-menu-edit {
|
|
border: 1px solid rgba(68, 166, 255, 0.24);
|
|
background: rgba(29, 143, 255, 0.16);
|
|
color: #d9ecff;
|
|
border-radius: 999px;
|
|
padding: 5px 10px;
|
|
font-size: 11px;
|
|
font-weight: 800;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.04em;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.profile-menu-details {
|
|
font-size: 12px;
|
|
color: var(--ops-muted);
|
|
line-height: 1.65;
|
|
}
|
|
|
|
.profile-menu-details p {
|
|
margin: 4px 0;
|
|
}
|
|
|
|
.profile-menu-details strong {
|
|
color: var(--ops-text);
|
|
}
|
|
|
|
.profile-menu-item {
|
|
display: block;
|
|
width: 100%;
|
|
padding: 14px 18px;
|
|
background: transparent;
|
|
border: none;
|
|
border-top: 1px solid var(--ops-border-soft);
|
|
text-align: left;
|
|
cursor: pointer;
|
|
color: var(--ops-text);
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.profile-menu-item.first {
|
|
border-top: none;
|
|
}
|
|
|
|
.profile-menu-item:hover { background: rgba(255, 255, 255, 0.04); }
|
|
|
|
.navbar-tab-strip {
|
|
display: flex;
|
|
gap: 6px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.navbar-tab-active,
|
|
.navbar-tab-inactive {
|
|
border: 1px solid var(--ops-border);
|
|
color: var(--ops-text);
|
|
border-radius: var(--ops-radius);
|
|
padding: 7px 12px;
|
|
font-size: 12px;
|
|
font-weight: 700;
|
|
letter-spacing: 0.02em;
|
|
text-transform: uppercase;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.navbar-tab-active {
|
|
background: var(--ops-accent);
|
|
border-color: var(--ops-accent-dark);
|
|
color: white;
|
|
}
|
|
|
|
.navbar-tab-inactive {
|
|
background: var(--ops-surface-muted);
|
|
}
|
|
|
|
.navbar-tab-inactive:hover {
|
|
background: var(--ops-accent-soft);
|
|
border-color: #b8d5e4;
|
|
color: var(--ops-accent);
|
|
}
|
|
|
|
.profile-question-row {
|
|
display: grid;
|
|
grid-template-columns: minmax(240px, 320px) 1fr;
|
|
gap: 14px;
|
|
align-items: start;
|
|
border: 1px solid var(--ops-border-soft);
|
|
border-radius: var(--ops-radius);
|
|
padding: 12px 12px 10px;
|
|
background: rgba(24, 27, 31, 0.92);
|
|
}
|
|
|
|
.profile-question-meta {
|
|
min-width: 0;
|
|
}
|
|
|
|
.profile-question-answer {
|
|
min-width: 0;
|
|
}
|
|
|
|
.profile-question-readonly {
|
|
width: 100%;
|
|
min-height: 38px;
|
|
padding: 8px 10px;
|
|
border: 1px solid var(--ops-border);
|
|
border-radius: var(--ops-radius);
|
|
background: var(--ops-surface-muted);
|
|
color: var(--ops-muted);
|
|
font-weight: 600;
|
|
}
|
|
|
|
.profile-question-row-admin {
|
|
grid-template-columns: 1fr;
|
|
gap: 8px;
|
|
padding: 14px 0;
|
|
border: 0;
|
|
border-top: 1px solid rgba(38, 44, 50, 0.88);
|
|
border-radius: 0;
|
|
background: transparent;
|
|
}
|
|
|
|
.profile-question-row-admin:first-child {
|
|
padding-top: 0;
|
|
border-top: 0;
|
|
}
|
|
|
|
.profile-question-row-admin .profile-question-meta {
|
|
display: grid;
|
|
gap: 6px;
|
|
}
|
|
|
|
.profile-question-row-admin .profile-question-answer {
|
|
width: 100%;
|
|
}
|
|
|
|
.profile-question-row-admin .profile-question-input,
|
|
.profile-question-row-admin .profile-question-readonly {
|
|
min-height: 42px;
|
|
}
|
|
|
|
.site-footer {
|
|
margin-top: auto;
|
|
padding: 20px 14px;
|
|
background: var(--ops-top);
|
|
color: var(--ops-muted);
|
|
border-top: 1px solid var(--ops-border-soft);
|
|
text-align: center;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.site-footer a {
|
|
color: var(--ops-accent);
|
|
text-decoration: none;
|
|
margin: 0 8px;
|
|
}
|
|
|
|
.site-footer a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.cookie-banner {
|
|
position: fixed;
|
|
right: 16px;
|
|
bottom: 16px;
|
|
z-index: 2400;
|
|
width: min(360px, calc(100vw - 32px));
|
|
background: var(--ops-surface);
|
|
color: var(--ops-text);
|
|
border-radius: var(--ops-radius);
|
|
border: 1px solid var(--ops-border);
|
|
border-left: 4px solid var(--ops-accent);
|
|
box-shadow: none;
|
|
padding: 12px 14px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
justify-content: space-between;
|
|
font-size: 13px;
|
|
line-height: 1.45;
|
|
}
|
|
|
|
.admin-workspace {
|
|
display: grid;
|
|
grid-template-columns: 58px 236px minmax(0, 1fr);
|
|
gap: 0;
|
|
align-items: start;
|
|
margin-top: 0;
|
|
min-height: calc(100vh - 44px);
|
|
background: transparent;
|
|
}
|
|
|
|
.admin-workspace.single-page-area {
|
|
grid-template-columns: 58px minmax(0, 1fr);
|
|
}
|
|
|
|
.admin-primary-rail {
|
|
position: sticky;
|
|
top: 54px;
|
|
min-height: calc(100vh - 64px);
|
|
padding: 14px 8px 12px;
|
|
background: rgba(17, 18, 20, 0.94);
|
|
border-right: 1px solid rgba(42, 45, 50, 0.92);
|
|
align-self: stretch;
|
|
}
|
|
|
|
.admin-primary-nav {
|
|
display: grid;
|
|
gap: 4px;
|
|
}
|
|
|
|
.admin-primary-link {
|
|
width: 100%;
|
|
height: 46px;
|
|
display: grid;
|
|
place-items: center;
|
|
border: 1px solid transparent;
|
|
background: transparent;
|
|
color: #aab2bd;
|
|
border-radius: 0;
|
|
cursor: pointer;
|
|
position: relative;
|
|
transition: background 0.14s ease, color 0.14s ease;
|
|
}
|
|
|
|
.admin-primary-link::before {
|
|
content: "";
|
|
position: absolute;
|
|
left: -8px;
|
|
top: 8px;
|
|
bottom: 8px;
|
|
width: 2px;
|
|
background: transparent;
|
|
transition: background 0.14s ease;
|
|
}
|
|
|
|
.admin-primary-link:hover {
|
|
background: rgba(255, 255, 255, 0.03);
|
|
color: #eef3f8;
|
|
}
|
|
|
|
.admin-primary-link:hover::before,
|
|
.admin-primary-link.active::before {
|
|
background: #4797ff;
|
|
}
|
|
|
|
.admin-primary-link.active {
|
|
background: rgba(255, 255, 255, 0.04);
|
|
color: #f3f6fa;
|
|
}
|
|
|
|
.admin-primary-icon {
|
|
width: 24px;
|
|
height: 24px;
|
|
display: grid;
|
|
place-items: center;
|
|
}
|
|
|
|
.admin-primary-icon svg {
|
|
width: 19px;
|
|
height: 19px;
|
|
}
|
|
|
|
.admin-primary-icon .icon-stroke {
|
|
fill: none;
|
|
stroke: currentColor;
|
|
stroke-width: 1.05;
|
|
stroke-linecap: round;
|
|
stroke-linejoin: round;
|
|
}
|
|
|
|
.admin-primary-link:not(.active) .admin-primary-icon .icon-fill {
|
|
display: none;
|
|
}
|
|
|
|
.admin-primary-link:hover .admin-primary-icon .icon-fill,
|
|
.admin-primary-link.active .admin-primary-icon .icon-fill {
|
|
fill: currentColor;
|
|
stroke: none;
|
|
opacity: 0.18;
|
|
}
|
|
|
|
.admin-page-rail {
|
|
position: sticky;
|
|
top: 54px;
|
|
min-height: calc(100vh - 64px);
|
|
padding: 18px 0 14px;
|
|
background: rgba(19, 20, 22, 0.82);
|
|
border-right: 1px solid rgba(42, 45, 50, 0.92);
|
|
align-self: stretch;
|
|
}
|
|
|
|
.admin-page-rail-title {
|
|
padding: 0 16px 12px;
|
|
margin: 0 0 6px;
|
|
color: #8d96a3;
|
|
font-size: 10px;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.09em;
|
|
border-bottom: 1px solid rgba(42, 45, 50, 0.92);
|
|
}
|
|
|
|
.admin-page-nav {
|
|
display: grid;
|
|
gap: 0;
|
|
}
|
|
|
|
.admin-rail-tools {
|
|
margin-top: 14px;
|
|
padding: 16px 16px 0;
|
|
border-top: 1px solid rgba(42, 45, 50, 0.92);
|
|
display: grid;
|
|
gap: 14px;
|
|
}
|
|
|
|
.admin-rail-search,
|
|
.admin-rail-group {
|
|
display: grid;
|
|
gap: 5px;
|
|
}
|
|
|
|
.admin-rail-search label,
|
|
.admin-rail-group-title {
|
|
color: #8d96a3;
|
|
font-size: 10px;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.09em;
|
|
}
|
|
|
|
.admin-rail-search input,
|
|
.admin-rail-group select,
|
|
.admin-rail-search select {
|
|
width: 100%;
|
|
min-height: 36px;
|
|
padding: 8px 11px;
|
|
border: 1px solid rgba(42, 45, 50, 0.92);
|
|
border-radius: 0;
|
|
background: rgba(255, 255, 255, 0.02);
|
|
color: #eef3f8;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.admin-rail-search input:focus,
|
|
.admin-rail-group select:focus,
|
|
.admin-rail-search select:focus {
|
|
outline: none;
|
|
border-color: rgba(71, 151, 255, 0.42);
|
|
background: rgba(255, 255, 255, 0.03);
|
|
box-shadow: inset 0 0 0 1px rgba(71, 151, 255, 0.12);
|
|
}
|
|
|
|
.admin-rail-meta {
|
|
display: grid;
|
|
gap: 4px;
|
|
padding: 10px 0 0;
|
|
border-top: 1px solid rgba(42, 45, 50, 0.92);
|
|
background: transparent;
|
|
color: #b5c0ce;
|
|
font-size: 11px;
|
|
}
|
|
|
|
.admin-rail-action {
|
|
min-height: 36px;
|
|
padding: 8px 0;
|
|
border: 0;
|
|
border-top: 1px solid rgba(42, 45, 50, 0.92);
|
|
border-bottom: 1px solid rgba(42, 45, 50, 0.92);
|
|
background: transparent;
|
|
color: #c7cdd6;
|
|
text-align: left;
|
|
font-size: 12px;
|
|
font-weight: 500;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.admin-rail-action:hover:not(:disabled) {
|
|
background: transparent;
|
|
color: #fff;
|
|
border-color: rgba(71, 151, 255, 0.26);
|
|
}
|
|
|
|
.admin-rail-action:first-child {
|
|
border-top: 1px solid rgba(42, 45, 50, 0.92);
|
|
}
|
|
|
|
.admin-page-link {
|
|
width: 100%;
|
|
padding: 10px 16px;
|
|
border: 0;
|
|
border-left: 2px solid transparent;
|
|
border-radius: 0;
|
|
background: transparent;
|
|
color: #c7cdd6;
|
|
text-align: left;
|
|
font-size: 12px;
|
|
font-weight: 500;
|
|
cursor: pointer;
|
|
transition: background 0.14s ease, border-color 0.14s ease, color 0.14s ease;
|
|
}
|
|
|
|
.admin-page-link:hover {
|
|
background: rgba(255, 255, 255, 0.03);
|
|
color: #fff;
|
|
border-left-color: rgba(71, 151, 255, 0.4);
|
|
}
|
|
|
|
.admin-page-link.active {
|
|
background: rgba(255, 255, 255, 0.04);
|
|
border-left-color: #4797ff;
|
|
color: #f3f6fa;
|
|
}
|
|
|
|
.admin-rail-action:disabled {
|
|
opacity: 0.45;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.admin-content {
|
|
min-width: 0;
|
|
padding: 18px 20px 28px;
|
|
background: transparent;
|
|
display: grid;
|
|
gap: 14px;
|
|
align-content: stretch;
|
|
min-height: calc(100vh - 44px);
|
|
}
|
|
|
|
.admin-inline-badge {
|
|
display: inline-block;
|
|
margin-left: 8px;
|
|
padding: 4px 8px;
|
|
border-radius: 4px;
|
|
font-size: 11px;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.05em;
|
|
background: rgba(71, 151, 255, 0.12);
|
|
border: 0;
|
|
color: #86bcff;
|
|
}
|
|
|
|
.admin-kv-list {
|
|
display: grid;
|
|
gap: 10px;
|
|
margin-bottom: 14px;
|
|
}
|
|
|
|
.admin-surface,
|
|
.admin-panel {
|
|
background: transparent;
|
|
border: 0;
|
|
border-radius: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.admin-surface-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: flex-start;
|
|
gap: 16px;
|
|
margin-bottom: 14px;
|
|
}
|
|
|
|
.admin-surface-header h4,
|
|
.admin-surface-header h3 {
|
|
margin: 0 0 4px;
|
|
}
|
|
|
|
.admin-surface-header p {
|
|
margin: 0;
|
|
color: #b5c0ce;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.admin-switch-row {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
color: #d7e0ec;
|
|
font-size: 12px;
|
|
font-weight: 400;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.admin-switch-row + .admin-switch-row {
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.admin-switch-group {
|
|
display: flex;
|
|
gap: 18px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.admin-kv-list strong,
|
|
.admin-kv-list span,
|
|
.admin-kv-list code {
|
|
display: block;
|
|
}
|
|
|
|
.admin-kv-list strong {
|
|
margin-bottom: 3px;
|
|
color: #eef3f8;
|
|
font-size: 11px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.admin-preview-block {
|
|
padding: 12px 13px;
|
|
border-top: 1px solid rgba(64, 71, 80, 0.55);
|
|
border-bottom: 1px solid rgba(34, 38, 44, 0.96);
|
|
background: rgba(16, 18, 22, 0.72);
|
|
}
|
|
|
|
.admin-preview-block strong {
|
|
display: block;
|
|
margin-bottom: 8px;
|
|
color: #eef3f8;
|
|
font-size: 11px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.admin-preview-block pre {
|
|
margin: 0;
|
|
white-space: pre-wrap;
|
|
word-break: break-word;
|
|
color: #eef3f8;
|
|
font-size: 12px;
|
|
font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
|
|
}
|
|
|
|
.admin-page-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: flex-start;
|
|
gap: 14px;
|
|
margin-bottom: 14px;
|
|
padding: 0 2px;
|
|
}
|
|
|
|
.admin-page-header h3 {
|
|
margin: 0 0 3px;
|
|
color: #f3f6fa;
|
|
font-size: 18px;
|
|
font-weight: 520;
|
|
letter-spacing: -0.02em;
|
|
}
|
|
|
|
.admin-page-header p {
|
|
margin: 0;
|
|
color: #eef3f8;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.admin-stat-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
|
|
gap: 0;
|
|
margin-bottom: 18px;
|
|
border-top: 1px solid rgba(42, 45, 50, 0.92);
|
|
border-left: 1px solid rgba(42, 45, 50, 0.92);
|
|
}
|
|
|
|
.admin-stat-card {
|
|
display: grid;
|
|
gap: 6px;
|
|
background: transparent;
|
|
border: 0;
|
|
border-right: 1px solid rgba(42, 45, 50, 0.92);
|
|
border-bottom: 1px solid rgba(42, 45, 50, 0.92);
|
|
border-radius: 0;
|
|
padding: 15px 16px;
|
|
text-align: left;
|
|
color: var(--ops-text);
|
|
box-shadow: none;
|
|
}
|
|
|
|
button.admin-stat-card {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.admin-stat-card span {
|
|
color: #eef3f8;
|
|
font-size: 11px;
|
|
font-weight: 600;
|
|
letter-spacing: 0.05em;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.admin-stat-card strong {
|
|
font-size: 28px;
|
|
line-height: 1;
|
|
color: #f3f6fa;
|
|
}
|
|
|
|
.admin-stat-card.attention {
|
|
background: rgba(255, 184, 76, 0.04);
|
|
}
|
|
|
|
.admin-panel-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
|
|
gap: 0 18px;
|
|
border-top: 1px solid rgba(42, 45, 50, 0.92);
|
|
}
|
|
|
|
.admin-panel {
|
|
box-shadow: none;
|
|
padding-top: 16px;
|
|
}
|
|
|
|
.admin-panel h4 {
|
|
margin: 0 0 12px;
|
|
color: #f3f6fa;
|
|
font-size: 14px;
|
|
font-weight: 520;
|
|
}
|
|
|
|
.admin-queue-list {
|
|
display: grid;
|
|
gap: 0;
|
|
}
|
|
|
|
.admin-queue-item {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
gap: 12px;
|
|
align-items: center;
|
|
border: 0;
|
|
border-top: 1px solid rgba(42, 45, 50, 0.92);
|
|
border-radius: 0;
|
|
padding: 12px 0;
|
|
background: transparent;
|
|
}
|
|
|
|
.admin-queue-item span,
|
|
.muted-line {
|
|
display: block;
|
|
color: #b5c0ce;
|
|
font-size: 12px;
|
|
margin-top: 2px;
|
|
}
|
|
|
|
.admin-queue-item:first-child {
|
|
border-top: 0;
|
|
}
|
|
|
|
.admin-filter-bar {
|
|
display: grid;
|
|
grid-template-columns: minmax(240px, 1fr) repeat(3, minmax(150px, 180px));
|
|
gap: 10px;
|
|
margin-bottom: 12px;
|
|
padding: 0;
|
|
border: 0;
|
|
border-radius: 0;
|
|
background: transparent;
|
|
}
|
|
|
|
.admin-filter-bar input,
|
|
.admin-filter-bar select,
|
|
.drawer-control-grid select {
|
|
width: 100%;
|
|
padding: 8px 10px;
|
|
min-height: 34px;
|
|
border: 1px solid rgba(52, 57, 66, 0.96);
|
|
border-radius: 2px;
|
|
background: #111214;
|
|
color: var(--ops-text);
|
|
}
|
|
|
|
.admin-filter-bar input:focus,
|
|
.admin-filter-bar select:focus,
|
|
.drawer-control-grid select:focus {
|
|
outline: none;
|
|
border-color: var(--ops-accent);
|
|
box-shadow: 0 0 0 3px rgba(11, 111, 143, 0.12);
|
|
}
|
|
|
|
.admin-table-shell {
|
|
min-height: 0;
|
|
border: 0;
|
|
border-radius: 0;
|
|
background: transparent;
|
|
box-shadow: none;
|
|
overflow: visible;
|
|
}
|
|
|
|
.admin-table-screen {
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-height: calc(100vh - 92px);
|
|
}
|
|
|
|
.admin-table-wrap {
|
|
flex: 1 1 auto;
|
|
overflow-x: auto;
|
|
overflow-y: auto;
|
|
border: 0;
|
|
border-radius: 0;
|
|
background: transparent;
|
|
box-shadow: none;
|
|
margin: 0 -16px;
|
|
padding: 0 16px;
|
|
}
|
|
|
|
.admin-table {
|
|
width: 100%;
|
|
min-width: 820px;
|
|
border-collapse: collapse;
|
|
table-layout: auto;
|
|
}
|
|
|
|
.admin-table th,
|
|
.admin-table td {
|
|
padding: 9px 12px;
|
|
border-bottom: 1px solid rgba(42, 45, 50, 0.92);
|
|
text-align: left;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.admin-table th {
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 1;
|
|
color: #f3f6fa;
|
|
font-size: 12px;
|
|
font-weight: 520;
|
|
letter-spacing: 0;
|
|
text-transform: none;
|
|
background: transparent;
|
|
white-space: nowrap;
|
|
border-bottom: 1px solid rgba(42, 45, 50, 0.92);
|
|
}
|
|
|
|
.admin-table-sort {
|
|
width: 100%;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 10px;
|
|
border: 0;
|
|
background: transparent;
|
|
padding: 0;
|
|
color: inherit;
|
|
font: inherit;
|
|
text-transform: inherit;
|
|
letter-spacing: inherit;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.admin-table-sort:hover {
|
|
color: #f3f6fa;
|
|
}
|
|
|
|
.admin-table-sort.active {
|
|
color: var(--ops-accent);
|
|
}
|
|
|
|
.admin-sort-arrow {
|
|
width: 12px;
|
|
height: 12px;
|
|
color: rgba(149, 160, 175, 0.62);
|
|
flex: 0 0 auto;
|
|
transition: transform 0.14s ease, color 0.14s ease;
|
|
}
|
|
|
|
.admin-sort-arrow svg {
|
|
width: 12px;
|
|
height: 12px;
|
|
fill: none;
|
|
stroke: currentColor;
|
|
stroke-width: 1.6;
|
|
stroke-linecap: round;
|
|
stroke-linejoin: round;
|
|
}
|
|
|
|
.admin-sort-arrow.active {
|
|
color: var(--ops-accent);
|
|
}
|
|
|
|
.admin-sort-arrow.asc {
|
|
transform: rotate(180deg);
|
|
}
|
|
|
|
.admin-table td {
|
|
color: #f3f6fa;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.admin-table tbody tr {
|
|
cursor: pointer;
|
|
transition: background 0.12s ease;
|
|
}
|
|
|
|
.admin-table tbody tr:hover {
|
|
background: rgba(255, 255, 255, 0.028);
|
|
}
|
|
|
|
.admin-table tbody tr:last-child td {
|
|
border-bottom: 0;
|
|
}
|
|
|
|
.admin-table-empty {
|
|
padding: 16px 14px;
|
|
}
|
|
|
|
.admin-table td strong {
|
|
color: #f3f6fa;
|
|
font-weight: 520;
|
|
}
|
|
|
|
.admin-table td .muted-line {
|
|
color: #eef3f8;
|
|
}
|
|
|
|
.admin-table-footer {
|
|
margin-top: auto;
|
|
margin-left: -16px;
|
|
margin-right: -16px;
|
|
padding: 10px 16px;
|
|
border-top: 1px solid rgba(42, 45, 50, 0.92);
|
|
background: transparent;
|
|
position: sticky;
|
|
bottom: 0;
|
|
z-index: 2;
|
|
}
|
|
|
|
.admin-table-intro {
|
|
padding: 16px 16px 0;
|
|
}
|
|
|
|
.admin-table-intro h4,
|
|
.admin-table-intro h3 {
|
|
margin: 0 0 4px;
|
|
}
|
|
|
|
.admin-table-intro p {
|
|
margin: 0;
|
|
color: #b5c0ce;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.admin-field,
|
|
.admin-question-builder .admin-field,
|
|
.admin-question-search,
|
|
.admin-question-builder textarea,
|
|
.admin-question-builder select,
|
|
.admin-question-builder input {
|
|
width: 100%;
|
|
padding: 8px 10px;
|
|
min-height: 34px;
|
|
border: 1px solid rgba(52, 57, 66, 0.96);
|
|
border-radius: 2px;
|
|
background: #111214;
|
|
color: var(--ops-text);
|
|
}
|
|
|
|
.admin-field:focus,
|
|
.admin-question-builder .admin-field:focus,
|
|
.admin-question-builder textarea:focus,
|
|
.admin-question-builder select:focus,
|
|
.admin-question-builder input:focus {
|
|
outline: none;
|
|
border-color: var(--ops-accent);
|
|
box-shadow: 0 0 0 3px rgba(11, 111, 143, 0.12);
|
|
}
|
|
|
|
.admin-field::placeholder,
|
|
.admin-question-builder .admin-field::placeholder,
|
|
.admin-question-builder textarea::placeholder,
|
|
.admin-question-builder input::placeholder {
|
|
color: #8d96a3;
|
|
}
|
|
|
|
.admin-field-disabled {
|
|
background: #202328;
|
|
color: #8d96a3;
|
|
}
|
|
|
|
.admin-field-textarea {
|
|
min-height: 84px;
|
|
resize: vertical;
|
|
}
|
|
|
|
.admin-form-grid {
|
|
display: grid;
|
|
gap: 10px;
|
|
}
|
|
|
|
.admin-field-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
|
|
gap: 10px;
|
|
}
|
|
|
|
.admin-form-actions {
|
|
display: flex;
|
|
gap: 10px;
|
|
}
|
|
|
|
.admin-question-builder {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.admin-question-switches {
|
|
padding-top: 4px;
|
|
}
|
|
|
|
.admin-subsection-header {
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.admin-question-search {
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.admin-question-table {
|
|
min-width: 0;
|
|
}
|
|
|
|
.admin-question-table td:nth-child(2) {
|
|
min-width: 240px;
|
|
}
|
|
|
|
.admin-question-table td:nth-child(3),
|
|
.admin-question-table td:nth-child(4) {
|
|
color: #c6ced8;
|
|
}
|
|
|
|
.admin-question-layout {
|
|
display: grid;
|
|
grid-template-columns: minmax(0, 1fr) 360px;
|
|
gap: 18px;
|
|
align-items: start;
|
|
}
|
|
|
|
.admin-question-main {
|
|
min-width: 0;
|
|
}
|
|
|
|
.admin-question-sidebar {
|
|
min-width: 0;
|
|
}
|
|
|
|
.admin-question-sidebar .admin-surface {
|
|
position: sticky;
|
|
top: 16px;
|
|
}
|
|
|
|
.admin-pager-controls {
|
|
display: flex;
|
|
gap: 6px;
|
|
}
|
|
|
|
.admin-pager-button {
|
|
width: 30px;
|
|
height: 30px;
|
|
display: grid;
|
|
place-items: center;
|
|
border: 1px solid transparent;
|
|
background: transparent;
|
|
color: #c7cdd6;
|
|
border-radius: 2px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.admin-pager-button:hover:not(:disabled) {
|
|
background: transparent;
|
|
color: #fff;
|
|
border-color: transparent;
|
|
}
|
|
|
|
.admin-pager-button:disabled {
|
|
opacity: 0.35;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.admin-inline-list {
|
|
display: flex;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
gap: 6px;
|
|
}
|
|
|
|
.admin-inline-chip {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
min-height: 22px;
|
|
padding: 0 8px;
|
|
border: 1px solid rgba(52, 57, 66, 0.96);
|
|
border-radius: 999px;
|
|
background: rgba(255, 255, 255, 0.03);
|
|
color: #d3dae4;
|
|
font-size: 11px;
|
|
line-height: 1;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.admin-code-textarea {
|
|
font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.admin-date-stack {
|
|
display: grid;
|
|
gap: 2px;
|
|
}
|
|
|
|
.admin-date-stack strong {
|
|
color: #f3f6fa;
|
|
font-weight: 520;
|
|
}
|
|
|
|
.admin-date-stack span {
|
|
color: #b5c0ce;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.email-preview-tabs {
|
|
display: inline-flex;
|
|
gap: 6px;
|
|
margin-bottom: 12px;
|
|
padding: 3px;
|
|
border: 1px solid rgba(38, 44, 50, 0.88);
|
|
background: rgba(17, 18, 20, 0.9);
|
|
}
|
|
|
|
.email-preview-tab {
|
|
min-height: 30px;
|
|
padding: 0 10px;
|
|
border: 0;
|
|
background: transparent;
|
|
color: #a9b6c6;
|
|
font-size: 12px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.email-preview-tab.active {
|
|
background: rgba(255, 255, 255, 0.06);
|
|
color: #f3f7fb;
|
|
}
|
|
|
|
.email-preview-frame-shell {
|
|
overflow: hidden;
|
|
border: 1px solid rgba(38, 44, 50, 0.88);
|
|
background: #ffffff;
|
|
}
|
|
|
|
.email-preview-frame {
|
|
width: 100%;
|
|
min-height: 440px;
|
|
border: 0;
|
|
background: #ffffff;
|
|
}
|
|
|
|
.email-preview-code {
|
|
margin: 0;
|
|
padding: 14px;
|
|
border: 1px solid rgba(38, 44, 50, 0.88);
|
|
background: rgba(17, 18, 20, 0.9);
|
|
color: #eef3f8;
|
|
white-space: pre-wrap;
|
|
word-break: break-word;
|
|
font-size: 12px;
|
|
font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
|
|
}
|
|
|
|
.admin-pager-button svg {
|
|
width: 14px;
|
|
height: 14px;
|
|
fill: none;
|
|
stroke: currentColor;
|
|
stroke-width: 1.7;
|
|
stroke-linecap: round;
|
|
stroke-linejoin: round;
|
|
}
|
|
|
|
.admin-table .btn,
|
|
.table-button-row .btn {
|
|
padding: 5px 9px;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.table-button-row {
|
|
display: flex;
|
|
gap: 6px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.admin-section-header {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: space-between;
|
|
gap: 16px;
|
|
margin-bottom: 14px;
|
|
}
|
|
|
|
.admin-section-header h3,
|
|
.admin-section-header h4 {
|
|
margin: 0 0 4px 0;
|
|
}
|
|
|
|
.admin-section-header p {
|
|
margin: 0;
|
|
color: var(--ops-muted);
|
|
}
|
|
|
|
.admin-header-actions {
|
|
display: flex;
|
|
gap: 8px;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.admin-tier-benefits-cell {
|
|
min-width: 240px;
|
|
max-width: 320px;
|
|
color: #c6ced8;
|
|
white-space: pre-wrap;
|
|
}
|
|
|
|
.admin-inline-form-panel {
|
|
margin-bottom: 16px;
|
|
padding: 18px 0 2px;
|
|
border-top: 1px solid rgba(42, 45, 50, 0.92);
|
|
}
|
|
|
|
.admin-inline-form-panel h4 {
|
|
margin: 0 0 14px;
|
|
color: #f3f6fa;
|
|
font-size: 14px;
|
|
font-weight: 520;
|
|
}
|
|
|
|
.admin-inline-form-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 12px;
|
|
}
|
|
|
|
.admin-rail-form-panel {
|
|
padding-top: 2px;
|
|
border-top: 1px solid rgba(42, 45, 50, 0.92);
|
|
}
|
|
|
|
.admin-drawer-form-panel {
|
|
padding-top: 0;
|
|
border-top: 0;
|
|
}
|
|
|
|
.admin-rail-form-panel h4 {
|
|
margin: 0 0 12px;
|
|
color: #f3f6fa;
|
|
font-size: 12px;
|
|
font-weight: 520;
|
|
}
|
|
|
|
.admin-drawer-form-panel h4 {
|
|
margin: 0 0 14px;
|
|
color: #f3f6fa;
|
|
font-size: 14px;
|
|
font-weight: 520;
|
|
}
|
|
|
|
.admin-rail-form-grid {
|
|
display: grid;
|
|
grid-template-columns: 1fr;
|
|
gap: 0;
|
|
}
|
|
|
|
.admin-rail-form-panel .modal-form-group label {
|
|
margin-bottom: 5px;
|
|
color: #8d96a3;
|
|
font-size: 10px;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.09em;
|
|
}
|
|
|
|
.admin-drawer-form-panel .modal-form-group label {
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
.admin-rail-form-panel .modal-form-group input,
|
|
.admin-rail-form-panel .admin-inline-textarea {
|
|
min-height: 36px;
|
|
padding: 8px 11px;
|
|
border: 1px solid rgba(42, 45, 50, 0.92);
|
|
border-radius: 0;
|
|
background: rgba(255, 255, 255, 0.02);
|
|
color: #eef3f8;
|
|
font-size: 12px;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.admin-drawer-form-panel .modal-form-group input,
|
|
.admin-drawer-form-panel .admin-inline-textarea {
|
|
width: 100%;
|
|
padding: 10px 12px;
|
|
border: 1px solid var(--ops-border);
|
|
border-radius: 10px;
|
|
font-size: 15px;
|
|
color: var(--ops-text);
|
|
background-color: rgba(9, 17, 27, 0.88);
|
|
}
|
|
|
|
.admin-rail-form-panel .admin-inline-textarea {
|
|
min-height: 88px;
|
|
}
|
|
|
|
.admin-rail-form-panel .modal-form-group input:focus,
|
|
.admin-rail-form-panel .admin-inline-textarea:focus {
|
|
border-color: rgba(71, 151, 255, 0.42);
|
|
background: rgba(255, 255, 255, 0.03);
|
|
box-shadow: inset 0 0 0 1px rgba(71, 151, 255, 0.12);
|
|
}
|
|
|
|
.admin-drawer-form-panel .modal-form-group input:focus,
|
|
.admin-drawer-form-panel .admin-inline-textarea:focus {
|
|
outline: none;
|
|
border-color: var(--ops-accent);
|
|
box-shadow: 0 0 0 3px rgba(11, 93, 125, 0.12);
|
|
}
|
|
|
|
.admin-rail-form-panel .modal-buttons {
|
|
justify-content: stretch;
|
|
}
|
|
|
|
.admin-rail-form-panel .modal-buttons button {
|
|
flex: 1 1 0;
|
|
}
|
|
|
|
.admin-inline-textarea {
|
|
width: 100%;
|
|
min-height: 88px;
|
|
padding: 10px 12px;
|
|
border: 1px solid var(--ops-border);
|
|
border-radius: 10px;
|
|
font-size: 15px;
|
|
color: var(--ops-text);
|
|
background-color: rgba(9, 17, 27, 0.88);
|
|
resize: vertical;
|
|
}
|
|
|
|
.admin-inline-textarea:focus {
|
|
outline: none;
|
|
border-color: var(--ops-accent);
|
|
box-shadow: 0 0 0 3px rgba(11, 93, 125, 0.12);
|
|
}
|
|
|
|
.admin-inline-toggle-row {
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.admin-inline-toggle-row label {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
color: var(--ops-text);
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.esp-admin {
|
|
display: grid;
|
|
gap: 14px;
|
|
min-width: 0;
|
|
}
|
|
|
|
.esp-live-meta {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
flex-wrap: wrap;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.esp-live-pill {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
padding: 5px 10px;
|
|
border-radius: 6px;
|
|
border: 1px solid #464b53;
|
|
background: rgba(19, 20, 22, 0.48);
|
|
color: #b5bdc8;
|
|
font-size: 11px;
|
|
font-weight: 450;
|
|
}
|
|
|
|
.esp-live-pill::before {
|
|
content: "";
|
|
width: 8px;
|
|
height: 8px;
|
|
border-radius: 50%;
|
|
background: var(--ops-success);
|
|
box-shadow: 0 0 0 0 rgba(23, 108, 72, 0.28);
|
|
}
|
|
|
|
.esp-live-pill.is-refreshing::before {
|
|
animation: opsPulse 1s ease-out infinite;
|
|
}
|
|
|
|
.esp-live-timestamp {
|
|
color: var(--ops-muted);
|
|
font-size: 11px;
|
|
font-weight: 400;
|
|
}
|
|
|
|
.esp-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
|
|
gap: 16px;
|
|
}
|
|
|
|
.esp-form-card h4 {
|
|
margin-bottom: 14px;
|
|
}
|
|
|
|
.esp-summary-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
|
|
gap: 10px;
|
|
margin-bottom: 14px;
|
|
}
|
|
|
|
.esp-summary-card {
|
|
border-top: 1px solid rgba(74, 82, 92, 0.58);
|
|
border-bottom: 1px solid rgba(33, 36, 42, 0.95);
|
|
border-left: 1px solid rgba(42, 46, 52, 0.78);
|
|
border-right: 1px solid rgba(42, 46, 52, 0.78);
|
|
background: linear-gradient(180deg, rgba(30, 34, 39, 0.94) 0%, rgba(19, 21, 25, 0.94) 100%);
|
|
border-radius: 3px;
|
|
padding: 14px;
|
|
min-height: 96px;
|
|
}
|
|
|
|
.esp-summary-card strong,
|
|
.esp-summary-card span {
|
|
display: block;
|
|
}
|
|
|
|
.esp-summary-card strong {
|
|
font-size: 24px;
|
|
color: #f3f6fa;
|
|
}
|
|
|
|
.esp-summary-card span {
|
|
color: var(--ops-muted);
|
|
font-size: 11px;
|
|
}
|
|
|
|
.esp-tab-strip {
|
|
display: flex;
|
|
gap: 8px;
|
|
flex-wrap: wrap;
|
|
margin-bottom: 14px;
|
|
}
|
|
|
|
.esp-tab {
|
|
border: 0;
|
|
background: transparent;
|
|
color: #c7cdd6;
|
|
border-radius: 2px;
|
|
padding: 8px 12px;
|
|
cursor: pointer;
|
|
font-weight: 450;
|
|
transition: background-color 0.18s ease, color 0.18s ease;
|
|
}
|
|
|
|
.esp-tab:hover {
|
|
background: rgba(5, 37, 77, 0.75);
|
|
color: #fff;
|
|
}
|
|
|
|
.esp-tab.active {
|
|
background: #34383e;
|
|
color: #fff;
|
|
}
|
|
|
|
.esp-reader-list,
|
|
.esp-compact-list {
|
|
display: grid;
|
|
gap: 10px;
|
|
}
|
|
|
|
.esp-reader-row,
|
|
.esp-compact-row {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
gap: 14px;
|
|
align-items: center;
|
|
border-top: 1px solid rgba(64, 71, 80, 0.55);
|
|
border-bottom: 1px solid rgba(34, 38, 44, 0.96);
|
|
border-left: 1px solid rgba(42, 46, 52, 0.78);
|
|
border-right: 1px solid rgba(42, 46, 52, 0.78);
|
|
border-radius: 3px;
|
|
padding: 12px 13px;
|
|
background: rgba(18, 20, 24, 0.74);
|
|
}
|
|
|
|
.esp-reader-row strong,
|
|
.esp-reader-row span,
|
|
.esp-compact-row strong,
|
|
.esp-compact-row span {
|
|
display: block;
|
|
}
|
|
|
|
.esp-reader-row span,
|
|
.esp-compact-row span {
|
|
color: var(--ops-muted);
|
|
font-size: 11px;
|
|
}
|
|
|
|
.esp-edit-modal {
|
|
max-width: 620px;
|
|
width: min(94vw, 620px);
|
|
}
|
|
|
|
.esp-check-row {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
margin-top: 10px;
|
|
color: #d7e0ec;
|
|
font-size: 12px;
|
|
}
|
|
|
|
@keyframes opsPulse {
|
|
0% {
|
|
box-shadow: 0 0 0 0 rgba(23, 108, 72, 0.28);
|
|
}
|
|
100% {
|
|
box-shadow: 0 0 0 10px rgba(23, 108, 72, 0);
|
|
}
|
|
}
|
|
|
|
.admin-pagination {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
gap: 12px;
|
|
margin-top: 12px;
|
|
color: var(--ops-muted);
|
|
font-size: 11px;
|
|
}
|
|
|
|
.admin-pagination div {
|
|
display: flex;
|
|
gap: 8px;
|
|
}
|
|
|
|
.admin-empty {
|
|
color: var(--ops-subtle);
|
|
padding: 12px 0;
|
|
}
|
|
|
|
.role-badge {
|
|
display: inline-block;
|
|
padding: 4px 8px;
|
|
border-radius: 4px;
|
|
font-size: 11px;
|
|
font-weight: 600;
|
|
text-transform: capitalize;
|
|
}
|
|
|
|
.role-member {
|
|
background: var(--ops-success-soft);
|
|
color: var(--ops-success);
|
|
}
|
|
|
|
.role-admin {
|
|
background: var(--ops-warning-soft);
|
|
color: var(--ops-warning);
|
|
}
|
|
|
|
.role-super_admin {
|
|
background: var(--ops-coral-soft);
|
|
color: #ffd7df;
|
|
}
|
|
|
|
.drawer-overlay {
|
|
position: fixed;
|
|
inset: 0;
|
|
z-index: 2600;
|
|
background: rgba(5, 8, 12, 0.58);
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
backdrop-filter: blur(3px);
|
|
}
|
|
|
|
.user-drawer {
|
|
width: min(430px, 100vw);
|
|
height: 100vh;
|
|
overflow-y: auto;
|
|
background: #161a1e;
|
|
border-left: 1px solid rgba(56, 62, 71, 0.95);
|
|
box-shadow: -18px 0 40px rgba(0, 0, 0, 0.26);
|
|
padding: 0 0 26px;
|
|
scrollbar-width: thin;
|
|
scrollbar-color: rgba(93, 100, 112, 0.75) transparent;
|
|
}
|
|
|
|
.property-drawer {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.drawer-header {
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 5;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: flex-start;
|
|
gap: 14px;
|
|
padding: 18px 20px 16px;
|
|
background: rgba(22, 26, 30, 0.96);
|
|
border-bottom: 1px solid rgba(54, 59, 67, 0.95);
|
|
}
|
|
|
|
.drawer-header-main {
|
|
min-width: 0;
|
|
}
|
|
|
|
.drawer-eyebrow {
|
|
display: inline-block;
|
|
margin-bottom: 8px;
|
|
color: #8ea0b8;
|
|
font-size: 10px;
|
|
font-weight: 700;
|
|
letter-spacing: 0.16em;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.drawer-header h3 {
|
|
margin: 0 0 6px;
|
|
font-size: 24px;
|
|
line-height: 1.1;
|
|
color: #f8fbff;
|
|
letter-spacing: -0.03em;
|
|
}
|
|
|
|
.drawer-header p {
|
|
margin: 0;
|
|
color: #c7d0dc;
|
|
font-size: 13px;
|
|
line-height: 1.45;
|
|
}
|
|
|
|
.drawer-header-actions {
|
|
display: flex;
|
|
gap: 8px;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.drawer-close {
|
|
width: 34px;
|
|
height: 34px;
|
|
border: 1px solid rgba(62, 68, 77, 0.92);
|
|
background: rgba(20, 23, 27, 0.96);
|
|
color: #dbe4ef;
|
|
font-size: 22px;
|
|
line-height: 1;
|
|
cursor: pointer;
|
|
transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
|
|
}
|
|
|
|
.drawer-close:hover {
|
|
background: rgba(71, 151, 255, 0.12);
|
|
border-color: rgba(71, 151, 255, 0.38);
|
|
color: #fff;
|
|
}
|
|
|
|
.drawer-hero {
|
|
padding: 14px 20px 0;
|
|
}
|
|
|
|
.drawer-hero-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 0;
|
|
border-top: 1px solid rgba(38, 44, 50, 0.88);
|
|
border-left: 1px solid rgba(38, 44, 50, 0.88);
|
|
}
|
|
|
|
.drawer-hero-card {
|
|
min-width: 0;
|
|
display: grid;
|
|
gap: 5px;
|
|
padding: 12px 14px;
|
|
background: transparent;
|
|
border-right: 1px solid rgba(38, 44, 50, 0.88);
|
|
border-bottom: 1px solid rgba(38, 44, 50, 0.88);
|
|
}
|
|
|
|
.drawer-hero-label {
|
|
color: #90a0b4;
|
|
font-size: 10px;
|
|
font-weight: 700;
|
|
letter-spacing: 0.12em;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.drawer-hero-value {
|
|
min-width: 0;
|
|
color: #f7fbff;
|
|
font-size: 13px;
|
|
font-weight: 600;
|
|
line-height: 1.35;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.drawer-body {
|
|
display: grid;
|
|
gap: 0;
|
|
padding: 16px 20px 0;
|
|
}
|
|
|
|
.drawer-section {
|
|
background: transparent;
|
|
border: 0;
|
|
border-top: 1px solid rgba(38, 44, 50, 0.88);
|
|
border-radius: 0;
|
|
padding: 18px 0;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.drawer-section:first-child {
|
|
border-top: 0;
|
|
}
|
|
|
|
.drawer-section-header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 10px;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.drawer-section h4 {
|
|
margin: 0;
|
|
color: #f3f7fb;
|
|
font-size: 14px;
|
|
font-weight: 700;
|
|
letter-spacing: 0.02em;
|
|
}
|
|
|
|
.drawer-section-meta {
|
|
color: #95a4b8;
|
|
font-size: 11px;
|
|
}
|
|
|
|
.drawer-data-list {
|
|
display: grid;
|
|
gap: 6px;
|
|
}
|
|
|
|
.drawer-data-row {
|
|
display: grid;
|
|
grid-template-columns: 112px minmax(0, 1fr);
|
|
gap: 14px;
|
|
padding: 10px 0;
|
|
border-top: 1px solid rgba(38, 44, 50, 0.88);
|
|
}
|
|
|
|
.drawer-data-row:first-child {
|
|
padding-top: 0;
|
|
border-top: 0;
|
|
}
|
|
|
|
.drawer-data-label {
|
|
color: #8fa0b4;
|
|
font-size: 11px;
|
|
font-weight: 700;
|
|
letter-spacing: 0.08em;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.drawer-data-value {
|
|
min-width: 0;
|
|
color: #f3f8fe;
|
|
font-size: 13px;
|
|
line-height: 1.45;
|
|
word-break: break-word;
|
|
}
|
|
|
|
.drawer-control-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
|
|
gap: 12px;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.drawer-control-grid label {
|
|
display: grid;
|
|
gap: 5px;
|
|
font-weight: 700;
|
|
color: var(--ops-text);
|
|
font-size: 11px;
|
|
letter-spacing: 0.08em;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.drawer-toggle-group {
|
|
display: grid;
|
|
gap: 8px;
|
|
}
|
|
|
|
.drawer-toggle-label {
|
|
font-weight: 700;
|
|
color: var(--ops-text);
|
|
font-size: 11px;
|
|
letter-spacing: 0.08em;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.drawer-toggle-switch {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
width: fit-content;
|
|
padding: 0;
|
|
border: 0;
|
|
background: transparent;
|
|
color: #c7d0dc;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.drawer-toggle-track {
|
|
position: relative;
|
|
width: 42px;
|
|
height: 24px;
|
|
border-radius: 999px;
|
|
background: rgba(38, 44, 50, 0.96);
|
|
border: 1px solid rgba(62, 68, 77, 0.92);
|
|
transition: background-color 0.18s ease, border-color 0.18s ease;
|
|
}
|
|
|
|
.drawer-toggle-thumb {
|
|
position: absolute;
|
|
top: 2px;
|
|
left: 2px;
|
|
width: 18px;
|
|
height: 18px;
|
|
border-radius: 999px;
|
|
background: #c7d0dc;
|
|
transition: transform 0.18s ease, background-color 0.18s ease;
|
|
}
|
|
|
|
.drawer-toggle-copy {
|
|
font-size: 12px;
|
|
font-weight: 600;
|
|
color: #c7d0dc;
|
|
}
|
|
|
|
.drawer-toggle-switch.active .drawer-toggle-track {
|
|
background: rgba(47, 162, 82, 0.16);
|
|
border-color: rgba(47, 162, 82, 0.42);
|
|
}
|
|
|
|
.drawer-toggle-switch.active .drawer-toggle-thumb {
|
|
transform: translateX(18px);
|
|
background: #2fa252;
|
|
}
|
|
|
|
.drawer-toggle-switch.active .drawer-toggle-copy {
|
|
color: #e6ebf2;
|
|
}
|
|
|
|
.drawer-empty-copy {
|
|
color: #b2bdca;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.drawer-mini-table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.drawer-mini-table th,
|
|
.drawer-mini-table td {
|
|
padding: 10px 0;
|
|
border-bottom: 1px solid rgba(45, 49, 56, 0.86);
|
|
text-align: left;
|
|
vertical-align: top;
|
|
}
|
|
|
|
.drawer-mini-table th {
|
|
color: #90a0b4;
|
|
font-size: 10px;
|
|
font-weight: 700;
|
|
letter-spacing: 0.12em;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.drawer-mini-table td {
|
|
color: #f2f7fc;
|
|
}
|
|
|
|
.drawer-mini-table tbody tr:last-child td {
|
|
border-bottom: 0;
|
|
}
|
|
|
|
.drawer-rsvp-summary {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
gap: 10px;
|
|
margin-bottom: 14px;
|
|
}
|
|
|
|
.drawer-rsvp-stat {
|
|
display: grid;
|
|
gap: 4px;
|
|
padding: 11px 12px;
|
|
background: rgba(20, 23, 28, 0.78);
|
|
border-top: 1px solid rgba(70, 76, 86, 0.55);
|
|
border-bottom: 1px solid rgba(34, 38, 44, 0.96);
|
|
}
|
|
|
|
.drawer-rsvp-stat strong {
|
|
color: #f8fbff;
|
|
font-size: 18px;
|
|
font-weight: 650;
|
|
}
|
|
|
|
.drawer-rsvp-label {
|
|
color: #8fa0b4;
|
|
font-size: 10px;
|
|
font-weight: 700;
|
|
letter-spacing: 0.1em;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
/* Desktop view: side-by-side layout */
|
|
@media (min-width: 769px) {
|
|
.dashboard-grid {
|
|
grid-template-columns: 1fr 1fr;
|
|
align-items: start;
|
|
}
|
|
|
|
.dashboard-grid > .card {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
|
|
/* Mobile responsive adjustments */
|
|
@media (max-width: 768px) {
|
|
.dashboard-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.container {
|
|
padding: 10px 8px;
|
|
}
|
|
|
|
.card {
|
|
padding: 16px;
|
|
}
|
|
|
|
.navbar {
|
|
padding: 12px 16px;
|
|
}
|
|
|
|
.navbar h1 {
|
|
font-size: 18px;
|
|
}
|
|
|
|
/* Make tables responsive */
|
|
table {
|
|
width: 100%;
|
|
min-width: 520px;
|
|
}
|
|
|
|
.table-container {
|
|
overflow-x: auto;
|
|
-webkit-overflow-scrolling: touch;
|
|
}
|
|
|
|
/* Auth pages mobile adjustments */
|
|
.auth-container {
|
|
flex-direction: column;
|
|
padding: 20px;
|
|
gap: 20px;
|
|
}
|
|
|
|
.auth-card {
|
|
max-width: 100%;
|
|
padding: 24px;
|
|
}
|
|
|
|
/* Welcome section mobile adjustments */
|
|
.welcome-section {
|
|
max-width: 100% !important;
|
|
padding: 20px !important;
|
|
}
|
|
|
|
.welcome-section h1 {
|
|
font-size: 1.8rem !important;
|
|
}
|
|
|
|
/* Form grid mobile adjustments */
|
|
@media (max-width: 768px) {
|
|
form[style*="grid-template-columns"] {
|
|
grid-template-columns: 1fr !important;
|
|
gap: 16px !important;
|
|
}
|
|
}
|
|
|
|
.dashboard-tabs {
|
|
gap: 6px;
|
|
}
|
|
|
|
.navbar-main {
|
|
width: 100%;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.navbar-tab-strip {
|
|
width: 100%;
|
|
}
|
|
|
|
.profile-question-row {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.cookie-banner {
|
|
right: 10px;
|
|
bottom: 10px;
|
|
width: min(360px, calc(100vw - 20px));
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.admin-workspace {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.admin-question-layout {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.admin-question-sidebar .admin-surface {
|
|
position: static;
|
|
}
|
|
|
|
.admin-filter-bar {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.admin-page-header,
|
|
.admin-queue-item,
|
|
.admin-pagination {
|
|
align-items: stretch;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.admin-inline-form-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.admin-header-actions {
|
|
justify-content: stretch;
|
|
}
|
|
|
|
.admin-header-actions .btn {
|
|
width: 100%;
|
|
}
|
|
|
|
.user-drawer {
|
|
width: 100vw;
|
|
}
|
|
|
|
.drawer-header,
|
|
.drawer-hero,
|
|
.drawer-body {
|
|
padding-left: 16px;
|
|
padding-right: 16px;
|
|
}
|
|
|
|
.drawer-hero-grid,
|
|
.drawer-rsvp-summary {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.drawer-data-row {
|
|
grid-template-columns: 1fr;
|
|
gap: 4px;
|
|
}
|
|
}
|
|
|
|
.status-badge {
|
|
display: inline-block;
|
|
padding: 4px 8px;
|
|
border-radius: 4px;
|
|
border: 0;
|
|
font-size: 11px;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.06em;
|
|
}
|
|
|
|
.status-badge::before {
|
|
content: none;
|
|
}
|
|
|
|
.status-active {
|
|
background-color: var(--ops-success-soft);
|
|
color: var(--ops-success);
|
|
}
|
|
|
|
.status-pending {
|
|
background-color: var(--ops-warning-soft);
|
|
color: var(--ops-warning);
|
|
}
|
|
|
|
.status-expired {
|
|
background-color: var(--ops-danger-soft);
|
|
color: var(--ops-danger);
|
|
}
|
|
|
|
/* Modal Styles */
|
|
.modal-overlay {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background: rgba(3, 8, 14, 0.5);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
z-index: 2000;
|
|
}
|
|
|
|
.modal-content {
|
|
background: var(--ops-surface);
|
|
padding: 24px;
|
|
border-radius: var(--ops-radius);
|
|
width: 100%;
|
|
max-width: 400px;
|
|
box-shadow: none;
|
|
border: 1px solid rgba(120, 160, 196, 0.18);
|
|
}
|
|
|
|
.modal-content h3 {
|
|
margin: 0 0 20px 0;
|
|
color: var(--ops-text);
|
|
font-size: 18px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.modal-form-group {
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.modal-form-group label {
|
|
display: block;
|
|
margin-bottom: 4px;
|
|
font-weight: bold;
|
|
color: var(--ops-text);
|
|
font-size: 14px;
|
|
}
|
|
|
|
.modal-form-group input {
|
|
width: 100%;
|
|
padding: 10px 12px;
|
|
border: 1px solid var(--ops-border);
|
|
border-radius: 10px;
|
|
font-size: 15px;
|
|
color: var(--ops-text);
|
|
background-color: rgba(9, 17, 27, 0.88);
|
|
}
|
|
|
|
.modal-form-group input:focus {
|
|
outline: none;
|
|
border-color: var(--ops-accent);
|
|
box-shadow: 0 0 0 3px rgba(11, 93, 125, 0.12);
|
|
}
|
|
|
|
.modal-error {
|
|
color: var(--ops-danger);
|
|
background: var(--ops-danger-soft);
|
|
padding: 10px 12px;
|
|
border-radius: 8px;
|
|
margin-bottom: 16px;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.modal-buttons,
|
|
.modal-button-row {
|
|
display: flex;
|
|
gap: 8px;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.modal-btn-cancel {
|
|
padding: 8px 16px;
|
|
border: 1px solid var(--ops-border);
|
|
border-radius: var(--ops-radius);
|
|
background: var(--ops-surface);
|
|
cursor: pointer;
|
|
color: var(--ops-text);
|
|
font-size: 14px;
|
|
}
|
|
|
|
.modal-btn-cancel:hover {
|
|
background: var(--ops-surface-muted);
|
|
}
|
|
|
|
.modal-btn-primary {
|
|
padding: 8px 16px;
|
|
border: none;
|
|
border-radius: var(--ops-radius);
|
|
background: linear-gradient(180deg, #0d789b 0%, var(--ops-accent-dark) 100%);
|
|
color: white;
|
|
cursor: pointer;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.modal-btn-primary:hover:not(:disabled) {
|
|
background: var(--ops-accent-dark);
|
|
}
|
|
|
|
.modal-btn-primary:disabled {
|
|
background: #6c757d;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
/* Tab Styles */
|
|
.tab-active {
|
|
padding: 9px 14px;
|
|
border: 1px solid var(--ops-accent-dark);
|
|
background: linear-gradient(180deg, #0d789b 0%, var(--ops-accent-dark) 100%);
|
|
color: white;
|
|
cursor: pointer;
|
|
border-radius: var(--ops-radius);
|
|
font-weight: 600;
|
|
}
|
|
|
|
.tab-inactive {
|
|
padding: 9px 14px;
|
|
border: 1px solid var(--ops-border);
|
|
background: var(--ops-surface);
|
|
color: var(--ops-text);
|
|
cursor: pointer;
|
|
border-radius: var(--ops-radius);
|
|
font-weight: 600;
|
|
}
|
|
|
|
.tab-inactive:hover {
|
|
color: var(--ops-accent);
|
|
border-color: #b8d5e4;
|
|
background: var(--ops-accent-soft);
|
|
}
|
|
|
|
/* Super Admin Panel Styles */
|
|
.super-admin-table th {
|
|
color: #333;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.super-admin-table td {
|
|
color: #555;
|
|
}
|
|
|
|
.super-admin-loading {
|
|
color: #666;
|
|
}
|
|
|
|
.super-admin-placeholder {
|
|
color: #666;
|
|
}
|
|
|
|
/* Action buttons in tables */
|
|
.action-btn {
|
|
padding: 6px 12px;
|
|
border: 1px solid var(--ops-accent);
|
|
border-radius: var(--ops-radius);
|
|
background: linear-gradient(180deg, #0d789b 0%, var(--ops-accent-dark) 100%);
|
|
color: white !important;
|
|
cursor: pointer;
|
|
font-size: 12px;
|
|
font-weight: 500;
|
|
transition: all 0.2s;
|
|
display: inline-block;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.action-btn:hover {
|
|
background: var(--ops-accent-dark);
|
|
border-color: var(--ops-accent-dark);
|
|
color: white !important;
|
|
}
|
|
|
|
.action-btn-danger {
|
|
border-color: var(--ops-coral);
|
|
background: var(--ops-coral);
|
|
color: white !important;
|
|
}
|
|
|
|
.action-btn-danger:hover {
|
|
background: #9f2f3d;
|
|
border-color: #9f2f3d;
|
|
color: white !important;
|
|
}
|
|
|
|
/* Events Container Styles */
|
|
.events-container {
|
|
display: grid;
|
|
gap: 16px;
|
|
}
|
|
|
|
.event-card {
|
|
border: 1px solid var(--ops-border-soft);
|
|
border-radius: 16px;
|
|
padding: 18px;
|
|
background: var(--ops-surface-muted);
|
|
}
|
|
|
|
.event-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: flex-start;
|
|
gap: 16px;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.event-info {
|
|
flex: 1;
|
|
min-width: 0;
|
|
}
|
|
|
|
.event-title {
|
|
margin: 0 0 4px 0;
|
|
color: #eef7ff;
|
|
font-size: 18px;
|
|
word-wrap: break-word;
|
|
}
|
|
|
|
.event-datetime {
|
|
margin: 0;
|
|
font-size: 14px;
|
|
color: var(--ops-muted);
|
|
}
|
|
|
|
.event-location {
|
|
margin: 4px 0 0 0;
|
|
font-size: 14px;
|
|
color: var(--ops-muted);
|
|
}
|
|
|
|
.event-rsvp-buttons {
|
|
display: flex;
|
|
gap: 8px;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.rsvp-btn {
|
|
font-size: 12px;
|
|
padding: 8px 16px;
|
|
border: 1px solid rgba(120, 160, 196, 0.18);
|
|
border-radius: 999px;
|
|
background-color: rgba(9, 17, 27, 0.72);
|
|
color: var(--ops-muted);
|
|
cursor: pointer;
|
|
font-weight: 700;
|
|
transition: all 0.3s ease;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.rsvp-btn:hover:not(:disabled) {
|
|
opacity: 0.8;
|
|
}
|
|
|
|
.rsvp-btn:disabled {
|
|
opacity: 0.6;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.rsvp-btn.active {
|
|
font-weight: bold;
|
|
transform: scale(1.05);
|
|
}
|
|
|
|
.rsvp-btn:not(.active) {
|
|
opacity: 0.5;
|
|
filter: grayscale(50%);
|
|
}
|
|
|
|
.rsvp-btn-attending.active {
|
|
border: 1px solid rgba(36, 192, 138, 0.28);
|
|
background-color: rgba(36, 192, 138, 0.18);
|
|
color: white;
|
|
}
|
|
|
|
.rsvp-btn-maybe.active {
|
|
border: 1px solid rgba(227, 162, 63, 0.28);
|
|
background-color: rgba(227, 162, 63, 0.18);
|
|
color: #fff4d8;
|
|
}
|
|
|
|
.rsvp-btn-not-attending.active {
|
|
border: 1px solid rgba(217, 75, 98, 0.28);
|
|
background-color: rgba(217, 75, 98, 0.18);
|
|
color: white;
|
|
}
|
|
|
|
.event-description {
|
|
margin: 0;
|
|
font-size: 14px;
|
|
line-height: 1.4;
|
|
}
|
|
|
|
.event-rsvp-status {
|
|
margin-top: 12px;
|
|
padding: 8px 12px;
|
|
border-radius: 4px;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.event-rsvp-status.attending {
|
|
background-color: rgba(36, 192, 138, 0.14);
|
|
border: 1px solid rgba(36, 192, 138, 0.22);
|
|
color: #bcf5df;
|
|
}
|
|
|
|
.event-rsvp-status.maybe {
|
|
background-color: rgba(227, 162, 63, 0.14);
|
|
border: 1px solid rgba(227, 162, 63, 0.22);
|
|
color: #ffeabf;
|
|
}
|
|
|
|
.event-rsvp-status.not_attending {
|
|
background-color: rgba(217, 75, 98, 0.14);
|
|
border: 1px solid rgba(217, 75, 98, 0.22);
|
|
color: #ffd0d8;
|
|
}
|
|
|
|
input,
|
|
textarea,
|
|
select {
|
|
font: inherit;
|
|
}
|
|
|
|
input[type="checkbox"] {
|
|
appearance: none;
|
|
-webkit-appearance: none;
|
|
width: 34px;
|
|
height: 18px;
|
|
min-height: 18px;
|
|
flex: 0 0 34px;
|
|
margin: 0;
|
|
padding: 0;
|
|
border: 1px solid #41474f;
|
|
border-radius: 999px;
|
|
background: #252a30;
|
|
cursor: pointer;
|
|
position: relative;
|
|
transition: background 0.14s ease, border-color 0.14s ease;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
input[type="checkbox"]::after {
|
|
content: "";
|
|
position: absolute;
|
|
top: 1px;
|
|
left: 1px;
|
|
width: 14px;
|
|
height: 14px;
|
|
border-radius: 50%;
|
|
background: #d7e0ec;
|
|
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.32);
|
|
transition: transform 0.14s ease, background 0.14s ease;
|
|
}
|
|
|
|
input[type="checkbox"]:checked {
|
|
background: var(--ops-accent-dark);
|
|
border-color: var(--ops-accent);
|
|
}
|
|
|
|
input[type="checkbox"]:checked::after {
|
|
transform: translateX(16px);
|
|
background: #ffffff;
|
|
}
|
|
|
|
input[type="checkbox"]:focus-visible {
|
|
outline: none;
|
|
box-shadow: 0 0 0 3px rgba(71, 151, 255, 0.18);
|
|
}
|
|
|
|
input[type="checkbox"]:disabled {
|
|
opacity: 0.45;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
button,
|
|
a,
|
|
input,
|
|
textarea,
|
|
select {
|
|
transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
|
|
}
|
|
|
|
table {
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
th {
|
|
background: var(--ops-surface-muted);
|
|
color: var(--ops-muted);
|
|
font-size: 11px;
|
|
letter-spacing: 0.01em;
|
|
}
|
|
|
|
td,
|
|
th {
|
|
border-bottom: 1px solid rgba(42, 45, 50, 0.72);
|
|
}
|
|
|
|
.card h2,
|
|
.card h3,
|
|
.card h4,
|
|
.admin-panel h3,
|
|
.admin-panel h4,
|
|
.drawer-section h4 {
|
|
color: var(--ops-text);
|
|
}
|
|
|
|
.card p,
|
|
.event-description {
|
|
color: var(--ops-text);
|
|
}
|
|
|
|
.welcome-section,
|
|
.auth-card > div[style*="linear-gradient"],
|
|
.card div[style*="backgroundColor: '#f5f5f5'"],
|
|
.card div[style*="background-color: #f5f5f5"] {
|
|
background: var(--ops-surface-muted) !important;
|
|
border: 1px solid var(--ops-border-soft) !important;
|
|
border-radius: var(--ops-radius) !important;
|
|
box-shadow: none !important;
|
|
}
|
|
|
|
.rsvp-btn {
|
|
border-radius: var(--ops-radius);
|
|
}
|
|
|
|
.rsvp-btn.active {
|
|
transform: none;
|
|
}
|
|
|
|
.rsvp-btn-attending.active,
|
|
.rsvp-btn-maybe.active,
|
|
.rsvp-btn-not-attending.active {
|
|
box-shadow: none;
|
|
}
|
|
|
|
/* Mobile responsive adjustments for events */
|
|
@media (max-width: 768px) {
|
|
.portal-topbar {
|
|
grid-template-columns: 1fr;
|
|
gap: 8px;
|
|
padding: 9px 10px;
|
|
position: relative;
|
|
}
|
|
|
|
.portal-nav,
|
|
.portal-meta {
|
|
justify-content: flex-start;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.portal-topbar-admin {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.admin-workspace {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.admin-primary-rail,
|
|
.admin-page-rail {
|
|
position: static;
|
|
min-height: auto;
|
|
padding: 10px;
|
|
border-right: 0;
|
|
border-bottom: 1px solid rgba(42, 45, 50, 0.92);
|
|
}
|
|
|
|
.admin-primary-nav,
|
|
.admin-page-nav {
|
|
grid-template-columns: repeat(auto-fit, minmax(68px, 1fr));
|
|
}
|
|
|
|
.admin-primary-link {
|
|
height: 40px;
|
|
}
|
|
|
|
.admin-page-link {
|
|
text-align: center;
|
|
}
|
|
|
|
.auth-container {
|
|
grid-template-columns: 1fr;
|
|
align-content: start;
|
|
padding: 10px;
|
|
}
|
|
|
|
.auth-card {
|
|
max-width: none;
|
|
}
|
|
|
|
.event-header {
|
|
flex-direction: column;
|
|
align-items: stretch;
|
|
}
|
|
|
|
.event-rsvp-buttons {
|
|
flex-direction: column;
|
|
width: 100%;
|
|
gap: 8px;
|
|
}
|
|
|
|
.rsvp-btn {
|
|
width: 100%;
|
|
padding: 12px 16px;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.event-title {
|
|
font-size: 16px;
|
|
}
|
|
|
|
.event-card {
|
|
padding: 12px;
|
|
}
|
|
|
|
/* Event modal responsive */
|
|
.modal-content[style*="600px"] {
|
|
max-width: 95% !important;
|
|
}
|
|
|
|
.modal-content div[style*="grid-template-columns"] {
|
|
grid-template-columns: 1fr !important;
|
|
}
|
|
}
|
|
|
|
/* Member experience */
|
|
.auth-shell {
|
|
background:
|
|
radial-gradient(circle at top left, rgba(193, 214, 175, 0.4), transparent 28%),
|
|
radial-gradient(circle at top right, rgba(151, 186, 198, 0.28), transparent 24%),
|
|
linear-gradient(180deg, #f5f1e8 0%, #eef3ea 42%, #e8efe3 100%);
|
|
color: #1f2c22;
|
|
}
|
|
|
|
.auth-topbar,
|
|
.member-topbar {
|
|
background: rgba(245, 241, 232, 0.86);
|
|
border-bottom: 1px solid rgba(83, 102, 84, 0.16);
|
|
backdrop-filter: blur(14px);
|
|
}
|
|
|
|
.auth-shell .portal-mark,
|
|
.member-topbar .portal-mark {
|
|
background: linear-gradient(135deg, #314d3d 0%, #597861 100%);
|
|
box-shadow: 0 10px 24px rgba(49, 77, 61, 0.18);
|
|
}
|
|
|
|
.member-experience {
|
|
min-height: calc(100vh - 44px);
|
|
background:
|
|
radial-gradient(circle at top left, rgba(197, 214, 196, 0.32), transparent 30%),
|
|
linear-gradient(180deg, #f8faf7 0%, #eef4ec 45%, #e7efe3 100%);
|
|
color: #203125;
|
|
}
|
|
|
|
.auth-shell .portal-brand-text h1,
|
|
.member-topbar .portal-brand-text h1 {
|
|
color: #1d2b21;
|
|
}
|
|
|
|
.auth-shell .portal-subtitle,
|
|
.member-topbar .portal-subtitle {
|
|
color: #5f6f62;
|
|
}
|
|
|
|
.auth-container {
|
|
padding: 40px 24px;
|
|
}
|
|
|
|
.auth-container-wide {
|
|
grid-template-columns: minmax(300px, 420px) minmax(380px, 620px);
|
|
}
|
|
|
|
.auth-welcome-card,
|
|
.auth-card,
|
|
.member-card {
|
|
border: 1px solid rgba(89, 120, 98, 0.16);
|
|
border-radius: 24px;
|
|
background: rgba(255, 252, 246, 0.86);
|
|
box-shadow: 0 24px 60px rgba(44, 66, 47, 0.08);
|
|
}
|
|
|
|
.auth-welcome-card {
|
|
padding: 32px;
|
|
gap: 18px;
|
|
}
|
|
|
|
.auth-kicker,
|
|
.member-card-kicker,
|
|
.member-hero-kicker {
|
|
color: #4d6955;
|
|
letter-spacing: 0.12em;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.auth-welcome-card h2,
|
|
.member-hero-title {
|
|
font-family: Georgia, "Times New Roman", serif;
|
|
color: #203125;
|
|
line-height: 1.06;
|
|
}
|
|
|
|
.auth-welcome-card h2 {
|
|
font-size: clamp(2.1rem, 3vw, 3rem);
|
|
}
|
|
|
|
.auth-welcome-card p,
|
|
.auth-card-copy,
|
|
.member-hero-copy,
|
|
.member-muted-copy,
|
|
.membership-confirm-copy {
|
|
color: #405244;
|
|
font-size: 15px;
|
|
line-height: 1.65;
|
|
}
|
|
|
|
.auth-feature-list {
|
|
display: grid;
|
|
gap: 10px;
|
|
}
|
|
|
|
.auth-feature-item {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
gap: 10px;
|
|
color: #314239;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.auth-feature-item::before {
|
|
content: "";
|
|
width: 9px;
|
|
height: 9px;
|
|
margin-top: 7px;
|
|
border-radius: 50%;
|
|
background: linear-gradient(135deg, #758d63 0%, #315846 100%);
|
|
flex: 0 0 auto;
|
|
}
|
|
|
|
.auth-card {
|
|
max-width: none;
|
|
}
|
|
|
|
.auth-card-wide {
|
|
max-width: 620px;
|
|
}
|
|
|
|
.auth-card-head {
|
|
min-height: 72px;
|
|
padding: 0 24px;
|
|
border-bottom: 1px solid rgba(89, 120, 98, 0.14);
|
|
}
|
|
|
|
.auth-card-head h2 {
|
|
font-family: Georgia, "Times New Roman", serif;
|
|
font-size: 28px;
|
|
color: #203125;
|
|
}
|
|
|
|
.auth-card-head span {
|
|
color: #6a7f6f;
|
|
font-size: 12px;
|
|
font-weight: 700;
|
|
letter-spacing: 0.08em;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.auth-card-body {
|
|
padding: 24px;
|
|
}
|
|
|
|
.auth-card form,
|
|
.auth-footer {
|
|
padding: 0;
|
|
}
|
|
|
|
.auth-footer {
|
|
padding: 18px 24px 24px;
|
|
border-top: 1px solid rgba(89, 120, 98, 0.14);
|
|
color: #405244;
|
|
}
|
|
|
|
.auth-footer a {
|
|
color: #2f5d49;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.auth-form-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 16px 18px;
|
|
}
|
|
|
|
.form-group-full {
|
|
grid-column: 1 / -1;
|
|
}
|
|
|
|
.auth-shell .form-group label,
|
|
.member-experience .form-group label {
|
|
color: #2d4035;
|
|
font-size: 13px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.auth-shell .form-group input,
|
|
.auth-shell .form-group textarea,
|
|
.auth-shell .form-group select,
|
|
.member-experience .form-group input,
|
|
.member-experience .form-group textarea,
|
|
.member-experience .form-group select {
|
|
min-height: 46px;
|
|
padding: 11px 14px;
|
|
border: 1px solid rgba(89, 120, 98, 0.24);
|
|
border-radius: 14px;
|
|
background: rgba(255, 255, 255, 0.82);
|
|
color: #203125;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.auth-shell .form-group textarea,
|
|
.member-experience .form-group textarea {
|
|
min-height: 108px;
|
|
resize: vertical;
|
|
}
|
|
|
|
.auth-shell .form-group input::placeholder,
|
|
.auth-shell .form-group textarea::placeholder,
|
|
.member-experience .form-group input::placeholder,
|
|
.member-experience .form-group textarea::placeholder {
|
|
color: #819082;
|
|
}
|
|
|
|
.auth-shell .form-group input:focus,
|
|
.auth-shell .form-group textarea:focus,
|
|
.auth-shell .form-group select:focus,
|
|
.member-experience .form-group input:focus,
|
|
.member-experience .form-group textarea:focus,
|
|
.member-experience .form-group select:focus {
|
|
border-color: #5f7f69;
|
|
box-shadow: 0 0 0 4px rgba(95, 127, 105, 0.14);
|
|
}
|
|
|
|
.form-hint {
|
|
display: block;
|
|
margin-top: 6px;
|
|
color: #6c7f70;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.hint-success {
|
|
color: #2e7d4f;
|
|
}
|
|
|
|
.hint-error {
|
|
color: #b44747;
|
|
}
|
|
|
|
.field-success {
|
|
border-color: rgba(46, 125, 79, 0.5) !important;
|
|
}
|
|
|
|
.field-error {
|
|
border-color: rgba(180, 71, 71, 0.56) !important;
|
|
}
|
|
|
|
.auth-shell .btn,
|
|
.member-experience .btn,
|
|
.member-topbar .btn {
|
|
min-height: 44px;
|
|
padding: 10px 18px;
|
|
border-radius: 999px;
|
|
font-size: 13px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.auth-shell .btn-primary,
|
|
.member-experience .btn-primary,
|
|
.member-topbar .btn-primary {
|
|
border-color: #315846;
|
|
background: linear-gradient(135deg, #315846 0%, #5a7a61 100%);
|
|
color: #fff;
|
|
}
|
|
|
|
.auth-shell .btn-primary:hover,
|
|
.member-experience .btn-primary:hover,
|
|
.member-topbar .btn-primary:hover {
|
|
background: linear-gradient(135deg, #294738 0%, #4f6f57 100%);
|
|
color: #fff;
|
|
}
|
|
|
|
.auth-shell .btn-secondary,
|
|
.member-experience .btn-secondary,
|
|
.member-topbar .btn-secondary {
|
|
border-color: rgba(89, 120, 98, 0.28);
|
|
background: rgba(255, 255, 255, 0.7);
|
|
color: #274635;
|
|
}
|
|
|
|
.auth-shell .btn-secondary:hover,
|
|
.member-experience .btn-secondary:hover,
|
|
.member-topbar .btn-secondary:hover {
|
|
border-color: rgba(49, 88, 70, 0.36);
|
|
background: rgba(255, 255, 255, 0.96);
|
|
color: #203125;
|
|
}
|
|
|
|
.auth-shell .alert,
|
|
.member-experience .alert {
|
|
border-radius: 16px;
|
|
}
|
|
|
|
.auth-shell .alert-success,
|
|
.member-experience .alert-success {
|
|
background: rgba(69, 132, 88, 0.12);
|
|
color: #245538;
|
|
border-color: rgba(69, 132, 88, 0.18);
|
|
}
|
|
|
|
.auth-shell .alert-error,
|
|
.member-experience .alert-error {
|
|
background: rgba(194, 78, 78, 0.1);
|
|
color: #8a2d2d;
|
|
border-color: rgba(194, 78, 78, 0.2);
|
|
}
|
|
|
|
.member-experience {
|
|
padding-top: 28px;
|
|
padding-bottom: 36px;
|
|
}
|
|
|
|
.member-topbar {
|
|
background: rgba(248, 250, 247, 0.92);
|
|
border-bottom: 1px solid rgba(89, 120, 98, 0.18);
|
|
backdrop-filter: blur(14px);
|
|
}
|
|
|
|
.member-topbar .portal-tab {
|
|
border-color: rgba(89, 120, 98, 0.18);
|
|
color: #425547;
|
|
background: rgba(255, 255, 255, 0.66);
|
|
}
|
|
|
|
.member-topbar .portal-tab:hover {
|
|
background: rgba(89, 120, 98, 0.08);
|
|
color: #203125;
|
|
}
|
|
|
|
.member-topbar .portal-tab.active {
|
|
background: #315846;
|
|
border-color: #315846;
|
|
color: #fff;
|
|
}
|
|
|
|
.member-topbar .portal-switch-button,
|
|
.member-topbar .portal-exit-button {
|
|
border-color: rgba(89, 120, 98, 0.26);
|
|
background: rgba(255, 255, 255, 0.72);
|
|
color: #274635;
|
|
}
|
|
|
|
.member-topbar .portal-switch-button:hover,
|
|
.member-topbar .portal-exit-button:hover {
|
|
background: rgba(89, 120, 98, 0.08);
|
|
border-color: rgba(49, 88, 70, 0.36);
|
|
color: #203125;
|
|
}
|
|
|
|
.member-loading-state {
|
|
min-height: 60vh;
|
|
display: grid;
|
|
place-items: center;
|
|
color: #314239;
|
|
font-size: 16px;
|
|
}
|
|
|
|
.member-hero {
|
|
display: grid;
|
|
grid-template-columns: minmax(0, 1.6fr) minmax(280px, 1fr);
|
|
gap: 18px;
|
|
margin-bottom: 20px;
|
|
padding: 24px 28px;
|
|
border-radius: 28px;
|
|
background:
|
|
linear-gradient(135deg, rgba(255, 252, 246, 0.92) 0%, rgba(248, 245, 236, 0.88) 100%),
|
|
radial-gradient(circle at top right, rgba(143, 172, 140, 0.16), transparent 38%);
|
|
border: 1px solid rgba(89, 120, 98, 0.14);
|
|
box-shadow: 0 24px 60px rgba(44, 66, 47, 0.08);
|
|
}
|
|
|
|
.member-hero-title {
|
|
margin: 4px 0 10px;
|
|
font-size: clamp(2rem, 2.6vw, 3rem);
|
|
}
|
|
|
|
.member-stat-strip {
|
|
display: grid;
|
|
gap: 12px;
|
|
}
|
|
|
|
.toast-viewport {
|
|
position: fixed;
|
|
right: 16px;
|
|
bottom: 16px;
|
|
z-index: 2800;
|
|
width: min(380px, calc(100vw - 32px));
|
|
display: grid;
|
|
gap: 10px;
|
|
}
|
|
|
|
.toast {
|
|
display: grid;
|
|
grid-template-columns: minmax(0, 1fr) auto;
|
|
gap: 12px;
|
|
align-items: start;
|
|
padding: 12px 14px;
|
|
border: 1px solid rgba(42, 46, 52, 0.9);
|
|
border-left: 4px solid #4797ff;
|
|
background: rgba(24, 27, 31, 0.98);
|
|
color: #e6ebf2;
|
|
box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26);
|
|
}
|
|
|
|
.toast-success {
|
|
border-left-color: #2fa252;
|
|
}
|
|
|
|
.toast-error {
|
|
border-left-color: #ee6368;
|
|
}
|
|
|
|
.toast-info {
|
|
border-left-color: #4797ff;
|
|
}
|
|
|
|
.toast-message {
|
|
font-size: 13px;
|
|
line-height: 1.45;
|
|
word-break: break-word;
|
|
}
|
|
|
|
.toast-close {
|
|
width: 24px;
|
|
height: 24px;
|
|
border: 0;
|
|
background: transparent;
|
|
color: #b5c0ce;
|
|
font-size: 18px;
|
|
line-height: 1;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.toast-close:hover {
|
|
color: #fff;
|
|
}
|
|
|
|
.confirm-dialog {
|
|
width: min(460px, calc(100vw - 32px));
|
|
}
|
|
|
|
.confirm-dialog-title {
|
|
margin: 0 0 10px;
|
|
color: #f3f6fa;
|
|
}
|
|
|
|
.confirm-dialog-title.danger {
|
|
color: #ffa2a6;
|
|
}
|
|
|
|
.confirm-dialog-message {
|
|
margin: 0 0 20px;
|
|
color: #c6ced8;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.member-stat-chip {
|
|
padding: 16px 18px;
|
|
border-radius: 18px;
|
|
background: rgba(255, 255, 255, 0.62);
|
|
border: 1px solid rgba(89, 120, 98, 0.14);
|
|
}
|
|
|
|
.member-stat-label {
|
|
display: block;
|
|
margin-bottom: 6px;
|
|
color: #4c5e50;
|
|
font-size: 12px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.08em;
|
|
}
|
|
|
|
.member-stat-value {
|
|
color: #203125;
|
|
font-size: 20px;
|
|
}
|
|
|
|
.member-overview-grid {
|
|
grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
|
|
align-items: start;
|
|
}
|
|
|
|
.member-card {
|
|
padding: 24px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.member-card-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: flex-start;
|
|
gap: 14px;
|
|
margin-bottom: 18px;
|
|
}
|
|
|
|
.member-card h3,
|
|
.member-card h4,
|
|
.member-section-heading {
|
|
color: #203125;
|
|
}
|
|
|
|
.member-tier-title {
|
|
margin-bottom: 16px;
|
|
color: #315846 !important;
|
|
font-size: 24px;
|
|
}
|
|
|
|
.member-data-list {
|
|
display: grid;
|
|
gap: 10px;
|
|
}
|
|
|
|
.member-data-row {
|
|
display: grid;
|
|
grid-template-columns: minmax(130px, 180px) 1fr;
|
|
gap: 12px;
|
|
color: #405244;
|
|
}
|
|
|
|
.member-data-row strong {
|
|
color: #233227;
|
|
}
|
|
|
|
.member-info-panel,
|
|
.membership-summary-panel,
|
|
.membership-tier-benefits {
|
|
margin-top: 18px;
|
|
padding: 16px 18px;
|
|
border-radius: 18px;
|
|
background: rgba(239, 245, 236, 0.92);
|
|
border: 1px solid rgba(89, 120, 98, 0.14);
|
|
}
|
|
|
|
.member-info-panel p,
|
|
.membership-summary-panel p,
|
|
.membership-tier-benefits p {
|
|
margin-top: 8px;
|
|
color: #4c5e50 !important;
|
|
}
|
|
|
|
.member-table {
|
|
width: 100%;
|
|
}
|
|
|
|
.member-table th,
|
|
.member-table td {
|
|
padding: 14px 12px;
|
|
text-align: left;
|
|
border-bottom: 1px solid rgba(89, 120, 98, 0.14);
|
|
}
|
|
|
|
.member-table th {
|
|
background: rgba(239, 245, 236, 0.9);
|
|
color: #405244;
|
|
font-size: 12px;
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.08em;
|
|
}
|
|
|
|
.member-table td {
|
|
color: #2c3c30;
|
|
}
|
|
|
|
.member-table-caps {
|
|
text-transform: capitalize;
|
|
}
|
|
|
|
.member-experience .status-badge {
|
|
border-radius: 999px;
|
|
border-color: rgba(89, 120, 98, 0.14);
|
|
background: rgba(255, 255, 255, 0.76);
|
|
}
|
|
|
|
.member-experience .profile-menu-trigger {
|
|
background: rgba(255, 255, 255, 0.78);
|
|
border-color: rgba(89, 120, 98, 0.22);
|
|
color: #203125;
|
|
}
|
|
|
|
.member-experience .profile-menu-chevron {
|
|
color: #6a7f6f;
|
|
}
|
|
|
|
.member-experience .profile-menu-dropdown {
|
|
background: rgba(255, 253, 248, 0.96);
|
|
border-color: rgba(89, 120, 98, 0.18);
|
|
}
|
|
|
|
.member-experience .profile-menu-summary {
|
|
background: rgba(239, 245, 236, 0.94);
|
|
border-bottom-color: rgba(89, 120, 98, 0.14);
|
|
}
|
|
|
|
.member-experience .profile-menu-summary h4 {
|
|
color: #516657;
|
|
}
|
|
|
|
.member-experience .profile-menu-edit {
|
|
background: rgba(49, 88, 70, 0.08);
|
|
border-color: rgba(49, 88, 70, 0.18);
|
|
color: #274635;
|
|
}
|
|
|
|
.member-experience .profile-menu-details {
|
|
color: #55685b;
|
|
}
|
|
|
|
.member-experience .profile-menu-details strong {
|
|
color: #203125;
|
|
}
|
|
|
|
.member-experience .profile-menu-item {
|
|
color: #203125;
|
|
border-top-color: rgba(89, 120, 98, 0.12);
|
|
}
|
|
|
|
.member-experience .profile-menu-item:hover {
|
|
background: rgba(89, 120, 98, 0.08);
|
|
}
|
|
|
|
.member-settings-card {
|
|
max-width: 980px;
|
|
}
|
|
|
|
.member-settings-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
|
|
gap: 12px 16px;
|
|
}
|
|
|
|
.member-settings-actions {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
margin-top: 12px;
|
|
}
|
|
|
|
.member-settings-divider {
|
|
height: 1px;
|
|
margin: 26px 0 18px;
|
|
background: rgba(89, 120, 98, 0.14);
|
|
}
|
|
|
|
.member-section-heading {
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.membership-tier-grid,
|
|
.membership-payment-options {
|
|
display: grid;
|
|
gap: 14px;
|
|
}
|
|
|
|
.membership-tier-card {
|
|
padding: 18px;
|
|
border-radius: 20px;
|
|
border: 1px solid rgba(89, 120, 98, 0.16);
|
|
background: rgba(255, 255, 255, 0.75);
|
|
cursor: pointer;
|
|
}
|
|
|
|
.membership-tier-card:hover {
|
|
border-color: rgba(49, 88, 70, 0.34);
|
|
box-shadow: 0 16px 30px rgba(49, 77, 61, 0.1);
|
|
}
|
|
|
|
.membership-tier-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
gap: 12px;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.membership-tier-header h4 {
|
|
margin: 0;
|
|
color: #274635 !important;
|
|
}
|
|
|
|
.membership-tier-price {
|
|
color: #315846;
|
|
font-size: 18px;
|
|
font-weight: 800;
|
|
}
|
|
|
|
.membership-tier-description {
|
|
margin-top: 10px;
|
|
color: #405244 !important;
|
|
}
|
|
|
|
.membership-payment-stage,
|
|
.membership-action-row {
|
|
display: grid;
|
|
gap: 14px;
|
|
}
|
|
|
|
.membership-payment-heading {
|
|
margin-bottom: 2px;
|
|
}
|
|
|
|
.membership-payment-options .btn {
|
|
justify-content: space-between;
|
|
padding: 16px 18px;
|
|
}
|
|
|
|
.membership-payment-option-copy {
|
|
display: grid;
|
|
gap: 4px;
|
|
}
|
|
|
|
.membership-payment-option-copy div {
|
|
font-size: 14px;
|
|
opacity: 0.86;
|
|
}
|
|
|
|
.membership-cash-notice {
|
|
margin-bottom: 20px;
|
|
padding: 16px 18px;
|
|
border-radius: 18px;
|
|
background: rgba(214, 177, 78, 0.12);
|
|
border: 1px solid rgba(214, 177, 78, 0.22);
|
|
color: #6f5620;
|
|
}
|
|
|
|
.membership-cash-notice p {
|
|
margin-top: 8px;
|
|
}
|
|
|
|
.membership-setup-actions {
|
|
display: flex;
|
|
justify-content: center;
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.events-container {
|
|
gap: 14px;
|
|
}
|
|
|
|
.member-card .event-card {
|
|
border: 1px solid rgba(89, 120, 98, 0.14);
|
|
border-radius: 20px;
|
|
padding: 18px;
|
|
background: rgba(255, 255, 255, 0.72);
|
|
}
|
|
|
|
.member-card .event-title {
|
|
color: #203125;
|
|
}
|
|
|
|
.member-card .event-datetime,
|
|
.member-card .event-location,
|
|
.member-card .event-description {
|
|
color: #405244;
|
|
}
|
|
|
|
.member-card .event-location::before {
|
|
content: "Location";
|
|
display: inline-block;
|
|
margin-right: 8px;
|
|
color: #55685b;
|
|
font-size: 11px;
|
|
font-weight: 700;
|
|
letter-spacing: 0.08em;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.member-card .rsvp-btn {
|
|
border-color: rgba(89, 120, 98, 0.14);
|
|
background: rgba(248, 245, 236, 0.88);
|
|
color: #405244;
|
|
}
|
|
|
|
.member-card .rsvp-btn:not(.active) {
|
|
opacity: 1;
|
|
filter: none;
|
|
}
|
|
|
|
.member-card .rsvp-btn-attending.active {
|
|
background-color: rgba(69, 132, 88, 0.12);
|
|
border-color: rgba(69, 132, 88, 0.22);
|
|
color: #245538;
|
|
}
|
|
|
|
.member-card .rsvp-btn-maybe.active {
|
|
background-color: rgba(214, 177, 78, 0.14);
|
|
border-color: rgba(214, 177, 78, 0.22);
|
|
color: #6f5620;
|
|
}
|
|
|
|
.member-card .rsvp-btn-not-attending.active {
|
|
background-color: rgba(194, 78, 78, 0.12);
|
|
border-color: rgba(194, 78, 78, 0.2);
|
|
color: #8a2d2d;
|
|
}
|
|
|
|
.member-card .event-rsvp-status.attending {
|
|
background-color: rgba(69, 132, 88, 0.12);
|
|
border-color: rgba(69, 132, 88, 0.18);
|
|
color: #245538;
|
|
}
|
|
|
|
.member-card .event-rsvp-status.maybe {
|
|
background-color: rgba(214, 177, 78, 0.14);
|
|
border-color: rgba(214, 177, 78, 0.2);
|
|
color: #6f5620;
|
|
}
|
|
|
|
.member-card .event-rsvp-status.not_attending {
|
|
background-color: rgba(194, 78, 78, 0.12);
|
|
border-color: rgba(194, 78, 78, 0.2);
|
|
color: #8a2d2d;
|
|
}
|
|
|
|
.site-footer {
|
|
background: rgba(248, 250, 247, 0.94);
|
|
color: #5f6f62;
|
|
border-top: 1px solid rgba(89, 120, 98, 0.14);
|
|
}
|
|
|
|
.site-footer-caption {
|
|
margin-top: 8px;
|
|
}
|
|
|
|
.site-footer a {
|
|
color: #2f5d49;
|
|
}
|
|
|
|
.cookie-banner {
|
|
background: rgba(255, 255, 255, 0.94);
|
|
color: #203125;
|
|
border-color: rgba(89, 120, 98, 0.18);
|
|
border-left-color: #315846;
|
|
}
|
|
|
|
.cookie-banner-button {
|
|
padding: 6px 12px;
|
|
}
|
|
|
|
.member-experience {
|
|
min-height: 100%;
|
|
background:
|
|
radial-gradient(circle at top left, rgba(141, 170, 144, 0.14), transparent 28%),
|
|
linear-gradient(180deg, rgba(252, 253, 250, 0.98) 0%, rgba(244, 248, 242, 0.98) 100%);
|
|
color: #203125;
|
|
}
|
|
|
|
.portal-container-admin,
|
|
.admin-workspace {
|
|
background: var(--ops-bg);
|
|
}
|
|
|
|
.member-experience .card,
|
|
.member-experience .profile-questions-form.member-surface {
|
|
background: rgba(255, 252, 247, 0.92);
|
|
border: 1px solid rgba(89, 120, 98, 0.14);
|
|
box-shadow: 0 18px 36px rgba(56, 82, 61, 0.08);
|
|
}
|
|
|
|
.member-experience .form-group label,
|
|
.member-experience .profile-question-label,
|
|
.member-experience .profile-question-readonly {
|
|
color: #203125;
|
|
}
|
|
|
|
.member-experience .form-group input,
|
|
.member-experience .form-group textarea,
|
|
.member-experience .form-group select,
|
|
.member-experience .profile-question-input {
|
|
background: rgba(255, 255, 255, 0.94);
|
|
color: #203125;
|
|
border: 1px solid rgba(89, 120, 98, 0.18);
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.member-experience .form-group input::placeholder,
|
|
.member-experience .form-group textarea::placeholder,
|
|
.member-experience .profile-question-input::placeholder {
|
|
color: #7a8a7c;
|
|
}
|
|
|
|
.member-experience .alert-success {
|
|
background: rgba(69, 132, 88, 0.1);
|
|
color: #245538;
|
|
border-color: rgba(69, 132, 88, 0.18);
|
|
}
|
|
|
|
.member-experience .alert-error {
|
|
background: rgba(194, 78, 78, 0.1);
|
|
color: #8a2d2d;
|
|
border-color: rgba(194, 78, 78, 0.18);
|
|
}
|
|
|
|
.member-inline-action {
|
|
margin-top: 16px;
|
|
}
|
|
|
|
.member-rsvp-state {
|
|
text-transform: capitalize;
|
|
}
|
|
|
|
.profile-questions-form {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.profile-questions-form.admin-surface {
|
|
padding: 0;
|
|
background: transparent;
|
|
border: 0;
|
|
margin-top: 0;
|
|
}
|
|
|
|
.profile-questions-form.admin-surface .profile-questions-title {
|
|
margin-bottom: 6px;
|
|
padding: 0;
|
|
}
|
|
|
|
.profile-questions-form.admin-surface .profile-questions-description,
|
|
.profile-questions-form.admin-surface .profile-questions-search,
|
|
.profile-questions-form.admin-surface .alert,
|
|
.profile-questions-form.admin-surface .profile-questions-pagination,
|
|
.profile-questions-form.admin-surface .profile-questions-actions {
|
|
margin-left: 0;
|
|
margin-right: 0;
|
|
}
|
|
|
|
.profile-questions-form.admin-surface .profile-questions-search {
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.profile-questions-form.admin-surface .profile-question-input,
|
|
.profile-questions-form.admin-surface .profile-question-readonly {
|
|
background: #111214;
|
|
color: #e6ebf2;
|
|
border: 1px solid rgba(70, 75, 83, 0.9);
|
|
}
|
|
|
|
.profile-questions-form.admin-surface .profile-question-input::placeholder {
|
|
color: #8d96a3;
|
|
}
|
|
|
|
.profile-questions-form.admin-surface .profile-question-input:focus {
|
|
border-color: var(--ops-accent);
|
|
box-shadow: 0 0 0 3px rgba(71, 151, 255, 0.12);
|
|
}
|
|
|
|
.profile-questions-form.admin-surface .profile-question-label,
|
|
.profile-questions-form.admin-surface .profile-questions-title {
|
|
color: #f3f6fa;
|
|
}
|
|
|
|
.profile-questions-form.admin-surface .profile-question-help,
|
|
.profile-questions-form.admin-surface .profile-questions-description,
|
|
.profile-questions-form.admin-surface .profile-questions-empty,
|
|
.profile-questions-form.admin-surface .profile-questions-page-copy,
|
|
.profile-questions-form.admin-surface .profile-question-lock-note {
|
|
color: #8d96a3;
|
|
}
|
|
|
|
.profile-questions-title {
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.profile-questions-description {
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.profile-questions-search,
|
|
.profile-questions-list {
|
|
display: grid;
|
|
}
|
|
|
|
.profile-questions-search {
|
|
gap: 10px;
|
|
margin-bottom: 14px;
|
|
}
|
|
|
|
.profile-questions-list {
|
|
gap: 16px;
|
|
}
|
|
|
|
.profile-question-label {
|
|
display: block;
|
|
margin-bottom: 4px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.profile-question-required {
|
|
color: #c24e4e;
|
|
}
|
|
|
|
.profile-question-help,
|
|
.profile-questions-description,
|
|
.profile-questions-empty,
|
|
.profile-questions-page-copy {
|
|
color: #4c5e50;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.profile-question-help {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.profile-question-lock-note {
|
|
margin-top: 6px;
|
|
grid-column: 1 / -1;
|
|
color: #4c5e50;
|
|
font-size: 12px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.profile-question-input {
|
|
width: 100%;
|
|
padding: 10px 12px;
|
|
}
|
|
|
|
.profile-questions-pagination,
|
|
.profile-questions-pager-buttons,
|
|
.profile-questions-actions {
|
|
display: flex;
|
|
gap: 10px;
|
|
}
|
|
|
|
.profile-questions-pagination {
|
|
margin-top: 14px;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.profile-questions-pager-buttons {
|
|
gap: 8px;
|
|
}
|
|
|
|
.profile-questions-pager-button {
|
|
padding: 6px 12px;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.profile-questions-actions {
|
|
margin-top: 16px;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.member-hero {
|
|
border-radius: 18px;
|
|
}
|
|
|
|
.member-stat-chip,
|
|
.member-info-panel,
|
|
.membership-summary-panel,
|
|
.membership-tier-benefits,
|
|
.membership-tier-card,
|
|
.member-card .event-card,
|
|
.cookie-banner,
|
|
.site-footer,
|
|
.member-experience .profile-menu-trigger,
|
|
.member-experience .profile-menu-dropdown {
|
|
border-radius: 12px;
|
|
}
|
|
|
|
.member-card,
|
|
.profile-questions-form.member-surface {
|
|
border-radius: 14px;
|
|
}
|
|
|
|
/* Dark mode reset for member/auth surfaces */
|
|
.auth-shell {
|
|
background:
|
|
radial-gradient(circle at top left, rgba(33, 40, 46, 0.42), transparent 26%),
|
|
radial-gradient(circle at top right, rgba(22, 30, 38, 0.34), transparent 22%),
|
|
linear-gradient(180deg, #111417 0%, #14181c 48%, #171c21 100%);
|
|
color: var(--ops-text);
|
|
}
|
|
|
|
.auth-topbar,
|
|
.member-topbar {
|
|
background: rgba(24, 27, 31, 0.9);
|
|
border-bottom: 1px solid rgba(47, 53, 60, 0.9);
|
|
}
|
|
|
|
.auth-shell .portal-mark,
|
|
.member-topbar .portal-mark {
|
|
background: var(--ops-accent-dark);
|
|
box-shadow: none;
|
|
}
|
|
|
|
.auth-shell .portal-brand-text h1,
|
|
.member-topbar .portal-brand-text h1 {
|
|
color: #f3f6fa;
|
|
}
|
|
|
|
.auth-shell .portal-subtitle,
|
|
.member-topbar .portal-subtitle {
|
|
color: #aab2bd;
|
|
}
|
|
|
|
.auth-welcome-card,
|
|
.auth-card,
|
|
.member-card,
|
|
.member-experience .card,
|
|
.member-experience .profile-questions-form.member-surface {
|
|
background: rgba(24, 27, 31, 0.96);
|
|
border-top: 1px solid rgba(70, 76, 86, 0.7);
|
|
border-bottom: 1px solid rgba(34, 38, 44, 0.96);
|
|
border-left: 1px solid rgba(42, 46, 52, 0.85);
|
|
border-right: 1px solid rgba(42, 46, 52, 0.85);
|
|
box-shadow: none;
|
|
color: var(--ops-text);
|
|
}
|
|
|
|
.auth-kicker,
|
|
.member-card-kicker,
|
|
.member-hero-kicker,
|
|
.auth-card-head span,
|
|
.member-stat-label,
|
|
.profile-question-help,
|
|
.profile-questions-description,
|
|
.profile-questions-empty,
|
|
.profile-questions-page-copy,
|
|
.profile-question-lock-note,
|
|
.member-card .event-location::before {
|
|
color: #8d96a3;
|
|
}
|
|
|
|
.auth-welcome-card h2,
|
|
.member-hero-title,
|
|
.auth-card-head h2,
|
|
.member-card h3,
|
|
.member-card h4,
|
|
.member-section-heading,
|
|
.member-tier-title,
|
|
.member-stat-value,
|
|
.member-card .event-title,
|
|
.member-experience .profile-question-label,
|
|
.member-experience .profile-question-readonly {
|
|
color: #f3f6fa !important;
|
|
}
|
|
|
|
.auth-welcome-card p,
|
|
.auth-card-copy,
|
|
.member-hero-copy,
|
|
.member-muted-copy,
|
|
.membership-confirm-copy,
|
|
.auth-feature-item,
|
|
.auth-footer,
|
|
.member-data-row,
|
|
.membership-tier-description,
|
|
.member-card .event-datetime,
|
|
.member-card .event-location,
|
|
.member-card .event-description,
|
|
.member-experience .profile-menu-details,
|
|
.site-footer,
|
|
.cookie-banner {
|
|
color: #c6ced8 !important;
|
|
}
|
|
|
|
.auth-footer a,
|
|
.site-footer a {
|
|
color: var(--ops-accent);
|
|
}
|
|
|
|
.member-experience,
|
|
.portal-container-admin,
|
|
.admin-workspace {
|
|
background: var(--ops-bg);
|
|
color: var(--ops-text);
|
|
}
|
|
|
|
.member-hero {
|
|
background: rgba(24, 27, 31, 0.96);
|
|
border: 1px solid rgba(42, 46, 52, 0.85);
|
|
box-shadow: none;
|
|
}
|
|
|
|
.member-stat-chip,
|
|
.member-info-panel,
|
|
.membership-summary-panel,
|
|
.membership-tier-benefits,
|
|
.membership-tier-card,
|
|
.member-card .event-card {
|
|
background: rgba(24, 27, 31, 0.92);
|
|
border: 1px solid rgba(42, 46, 52, 0.85);
|
|
box-shadow: none;
|
|
}
|
|
|
|
.member-table th {
|
|
background: rgba(24, 27, 31, 0.96);
|
|
color: #c6ced8;
|
|
border-bottom: 1px solid rgba(42, 46, 52, 0.85);
|
|
}
|
|
|
|
.member-table td,
|
|
.member-data-row strong,
|
|
.member-info-panel p,
|
|
.membership-summary-panel p,
|
|
.membership-tier-benefits p {
|
|
color: #e6ebf2 !important;
|
|
}
|
|
|
|
.auth-shell .form-group label,
|
|
.member-experience .form-group label {
|
|
color: #e6ebf2;
|
|
}
|
|
|
|
.auth-shell .form-group input,
|
|
.auth-shell .form-group textarea,
|
|
.auth-shell .form-group select,
|
|
.member-experience .form-group input,
|
|
.member-experience .form-group textarea,
|
|
.member-experience .form-group select,
|
|
.member-experience .profile-question-input {
|
|
background: #111214;
|
|
color: #e6ebf2;
|
|
border: 1px solid rgba(70, 75, 83, 0.9);
|
|
box-shadow: none;
|
|
}
|
|
|
|
.auth-shell .form-group input::placeholder,
|
|
.auth-shell .form-group textarea::placeholder,
|
|
.member-experience .form-group input::placeholder,
|
|
.member-experience .form-group textarea::placeholder,
|
|
.member-experience .profile-question-input::placeholder {
|
|
color: #8d96a3;
|
|
}
|
|
|
|
.auth-shell .form-group input:focus,
|
|
.auth-shell .form-group textarea:focus,
|
|
.auth-shell .form-group select:focus,
|
|
.member-experience .form-group input:focus,
|
|
.member-experience .form-group textarea:focus,
|
|
.member-experience .form-group select:focus,
|
|
.member-experience .profile-question-input:focus {
|
|
border-color: var(--ops-accent);
|
|
box-shadow: 0 0 0 3px rgba(71, 151, 255, 0.12);
|
|
}
|
|
|
|
.auth-shell .btn-primary,
|
|
.member-experience .btn-primary,
|
|
.member-topbar .btn-primary {
|
|
background: transparent;
|
|
color: var(--ops-accent);
|
|
border-color: rgba(71, 151, 255, 0.72);
|
|
}
|
|
|
|
.auth-shell .btn-primary:hover,
|
|
.member-experience .btn-primary:hover,
|
|
.member-topbar .btn-primary:hover {
|
|
background: rgba(5, 37, 77, 0.75);
|
|
color: #fff;
|
|
}
|
|
|
|
.auth-shell .btn-secondary,
|
|
.member-experience .btn-secondary,
|
|
.member-topbar .btn-secondary,
|
|
.member-card .rsvp-btn,
|
|
.member-experience .profile-menu-trigger {
|
|
background: rgba(24, 27, 31, 0.92);
|
|
color: #c7cdd6;
|
|
border-color: rgba(70, 75, 83, 0.9);
|
|
}
|
|
|
|
.auth-shell .btn-secondary:hover,
|
|
.member-experience .btn-secondary:hover,
|
|
.member-topbar .btn-secondary:hover,
|
|
.member-topbar .portal-tab:hover,
|
|
.member-topbar .portal-switch-button:hover,
|
|
.member-topbar .portal-exit-button:hover,
|
|
.member-experience .profile-menu-item:hover {
|
|
background: rgba(5, 37, 77, 0.75);
|
|
color: #fff;
|
|
}
|
|
|
|
.member-topbar .portal-tab {
|
|
border-color: transparent;
|
|
background: transparent;
|
|
color: #c7cdd6;
|
|
}
|
|
|
|
.member-topbar .portal-tab.active {
|
|
background: #34383e;
|
|
border-color: #34383e;
|
|
color: #fff;
|
|
}
|
|
|
|
.member-topbar .portal-switch-button,
|
|
.member-topbar .portal-exit-button {
|
|
background: transparent;
|
|
color: var(--ops-accent);
|
|
border-color: rgba(71, 151, 255, 0.72);
|
|
}
|
|
|
|
.member-experience .status-badge,
|
|
.member-experience .profile-menu-dropdown,
|
|
.member-experience .profile-menu-summary,
|
|
.site-footer,
|
|
.cookie-banner {
|
|
background: rgba(24, 27, 31, 0.96);
|
|
border-color: rgba(42, 46, 52, 0.85);
|
|
}
|
|
|
|
.member-experience .profile-menu-summary h4,
|
|
.member-experience .profile-menu-details strong,
|
|
.member-experience .profile-menu-item,
|
|
.member-experience .profile-menu-chevron {
|
|
color: #e6ebf2;
|
|
}
|
|
|
|
.site-footer {
|
|
border-top: 1px solid rgba(42, 46, 52, 0.85);
|
|
}
|
|
|
|
.cookie-banner {
|
|
border-left-color: var(--ops-accent);
|
|
}
|
|
|
|
@media (max-width: 960px) {
|
|
.auth-container,
|
|
.auth-container-wide,
|
|
.member-hero,
|
|
.member-overview-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.auth-card-wide {
|
|
max-width: none;
|
|
}
|
|
|
|
.auth-form-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.member-card-header,
|
|
.membership-tier-header,
|
|
.member-data-row {
|
|
grid-template-columns: 1fr;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.member-data-row {
|
|
gap: 4px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.auth-container,
|
|
.member-experience {
|
|
padding: 18px 12px 28px;
|
|
}
|
|
|
|
.auth-welcome-card,
|
|
.auth-card-body,
|
|
.member-card,
|
|
.member-hero {
|
|
padding: 20px;
|
|
}
|
|
|
|
.auth-card-head {
|
|
padding: 0 20px;
|
|
}
|
|
|
|
.member-settings-actions,
|
|
.membership-setup-actions,
|
|
.membership-action-row,
|
|
.modal-button-row {
|
|
justify-content: stretch;
|
|
}
|
|
|
|
.member-settings-actions .btn,
|
|
.membership-setup-actions .btn,
|
|
.membership-action-row .btn {
|
|
width: 100%;
|
|
}
|
|
}
|