.member-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 240px;
  height: 100vh;
  background: #0f172a;
  display: flex;
  flex-direction: column;
  z-index: 200;
}
.member-sidebar .sidebar-logo {
  display: block;
  padding: 1.25rem 1.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #f1f5f9;
  text-decoration: none;
  border-bottom: 1px solid #1e293b;
}
.member-sidebar .sidebar-logo span {
  color: #38bdf8;
}
.member-sidebar .sidebar-logo .beta {
  display: inline-block;
  margin-left: 0.4rem;
  font-size: 0.6rem;
  font-style: italic;
  font-weight: 600;
  color: #94a3b8;
  vertical-align: super;
}
.member-sidebar nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0.5rem 0;
  overflow-y: auto;
}
.member-sidebar .nav-bottom {
  margin-top: auto;
}
.member-sidebar .sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 1.5rem;
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.15s, color 0.15s;
}
.member-sidebar .sidebar-link i {
  width: 18px;
  text-align: center;
}
.member-sidebar .sidebar-link:hover {
  background: #1e293b;
  color: #f1f5f9;
  text-decoration: none;
}
.member-sidebar .sidebar-link.active {
  background: #1e293b;
  color: #f1f5f9;
  border-left: 3px solid #2563eb;
  padding-left: calc(1.5rem - 3px);
}
.member-sidebar .sidebar-sublink {
  display: none;
  align-items: center;
  padding: 0.5rem 1.5rem 0.5rem 3.1rem;
  color: #94a3b8;
  font-size: 0.875rem;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.member-sidebar .sidebar-sublink:hover {
  background: #1e293b;
  color: #f1f5f9;
  text-decoration: none;
}
.member-sidebar .sidebar-sublink.active {
  color: #f1f5f9;
  font-weight: 600;
}
.member-sidebar .sidebar-sublink.submenu-open {
  display: flex;
}
.member-sidebar .sidebar-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid #1e293b;
  font-size: 0.8rem;
  color: #475569;
}
.member-sidebar .sidebar-footer .sidebar-footer-project {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: #f1f5f9;
  margin-bottom: 0.2rem;
}
.member-sidebar .sidebar-footer .sidebar-footer-project i {
  color: #94a3b8;
}
.member-sidebar .sidebar-footer .sidebar-footer-user {
  color: #475569;
}

.member-topbar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: #0f172a;
  align-items: center;
  gap: 0.6rem;
  padding: 0 1rem;
  z-index: 300;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.member-topbar .topbar-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #f1f5f9;
}
.member-topbar .topbar-title span {
  color: #38bdf8;
}
.member-topbar .burger-btn {
  background: none;
  border: none;
  color: #f1f5f9;
  font-size: 1.3rem;
  cursor: pointer;
  padding: 0.45rem 0.6rem;
  border-radius: 6px;
  line-height: 1;
}
.member-topbar .burger-btn:hover {
  background: #1e293b;
}

.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 150;
}
.sidebar-overlay.open {
  display: block;
}

.status_message {
  margin: 0 0 1.25rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
}
.status_message.failed {
  color: #991b1b;
  background: #fef2f2;
  border: 1px solid #fecaca;
  font-weight: 600;
}
.status_message.success {
  color: #166534;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  font-weight: 600;
}
.status_message.neutral {
  color: #64748b;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  font-style: italic;
}

.audience-icon.audience-public {
  color: #16a34a;
}
.audience-icon.audience-private {
  color: #64748b;
}

.auth-shell {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 3rem;
}

.auth-card {
  width: 100%;
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}

.auth-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.4rem;
}

.auth-sub {
  font-size: 0.875rem;
  color: #64748b;
  margin: 0 0 1.5rem;
  line-height: 1.4;
}

.auth-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.4rem;
}

.auth-input {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  color: #0f172a;
  background: #fff;
  margin-bottom: 1.25rem;
}
.auth-input:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.auth-code {
  letter-spacing: 0.4em;
  text-align: center;
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 700;
}

.auth-button {
  width: 100%;
  text-align: center;
}

.auth-alt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 1.25rem;
}
.auth-alt form {
  margin: 0;
}

.auth-alt--stack {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
}

.auth-resend {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.auth-resend .cf-turnstile:not(:empty) {
  margin-bottom: 0.25rem;
}

.auth-link {
  background: none;
  border: none;
  padding: 0;
  color: #2563eb;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.875rem;
  cursor: pointer;
  text-decoration: none;
}
.auth-link:hover {
  text-decoration: underline;
}

.auth-info {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.875rem;
  color: #64748b;
  text-align: center;
}
.auth-info p {
  margin: 0 0 0.5rem;
}
.auth-info .auth-button {
  margin-top: 0.5rem;
}

.member-content {
  margin-left: 240px;
  padding: 2rem;
  min-height: 100vh;
}
.member-content .page-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 1.5rem;
  display: block;
  line-height: 1.3;
}

.tag-chip {
  display: inline-block;
  border-radius: 999px;
  padding: 0.15em 0.6em;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.6;
  white-space: nowrap;
}

.tag-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.4rem;
}

td > .tag-chips {
  margin-top: 0;
}

.tag-chip-toggle {
  position: relative;
  cursor: pointer;
  margin: 0 0.35rem 0.35rem 0;
  opacity: 0.35;
  box-shadow: 0 0 0 1px #cbd5e1;
  transition: opacity 0.15s ease, box-shadow 0.15s ease;
}
.tag-chip-toggle input[type=checkbox] {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}
.tag-chip-toggle.selected {
  opacity: 1;
  box-shadow: none;
}
.tag-chip-toggle:focus-within {
  box-shadow: 0 0 0 2px #0f172a;
}

.rsvp-counts {
  white-space: nowrap;
}

.rsvp-count {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-right: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
}
.rsvp-count i {
  font-size: 0.75rem;
}

.rsvp-accept {
  color: #16a34a;
}

.rsvp-tentative {
  color: #b45309;
}

.rsvp-decline {
  color: #dc2626;
}

.rsvp-none {
  color: #64748b;
  font-weight: 500;
}

.rsvp-empty {
  color: #64748b;
}

.list-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 1rem 1.5rem;
  margin-bottom: 1.25rem;
}

.list-filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.list-filter-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
}

.list-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.list-filter-chips .tag-chip-toggle {
  margin: 0;
}

.list-filter select {
  padding: 0.5rem 0.7rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: #ffffff;
  font-size: 0.875rem;
  color: #0f172a;
}

.list-filter-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.list-filter-clear {
  font-size: 0.875rem;
  color: #64748b;
}
.list-filter-clear:hover {
  color: #0f172a;
}

.list-filter.js [type=submit] {
  display: none;
}

@media (max-width: 768px) {
  .member-topbar {
    display: flex;
  }
  .member-sidebar {
    transform: translateX(-100%);
    transition: transform 0.25s ease;
  }
  .member-sidebar.open {
    transform: translateX(0);
  }
  .member-content {
    margin-left: 0;
    padding: 1.25rem;
    padding-top: calc(56px + 1.25rem);
  }
  .list-filter {
    flex-direction: column;
    align-items: stretch;
    gap: 0.9rem;
  }
}
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #f8fafc;
  color: #0f172a;
  line-height: 1.6;
  font-size: 16px;
}

a, a:visited {
  color: #2563eb;
  text-decoration: none;
}

a:hover {
  color: #1d4ed8;
  text-decoration: none;
}

.bold {
  font-weight: 700;
}

table.border {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  overflow: hidden;
  font-size: 0.95rem;
}
table.border th, table.border td {
  padding: 0.7rem 0.85rem;
  border-bottom: 1px solid #cbd5e1;
  text-align: left;
  vertical-align: middle;
}
table.border th {
  background: #f1f5f9;
  color: #64748b;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
table.border tr:last-child td {
  border-bottom: none;
}
table.border tbody tr:hover td, table.border tr:hover td {
  background: #f8fafc;
}
table.border a {
  color: #2563eb;
}
table.border th.sortable {
  padding: 0;
}
table.border th.sortable a {
  display: block;
  padding: 0.7rem 0.85rem;
  color: inherit;
  white-space: nowrap;
}
table.border th.sortable a i {
  margin-left: 0.35rem;
  opacity: 0.35;
}
table.border th.sortable a:hover {
  background: #e2e8f0;
}
table.border th.sorted a i {
  opacity: 1;
  color: #2563eb;
}

.input_header {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #64748b;
  margin-top: 0.75rem;
  margin-bottom: 0.25rem;
}

.input {
  display: block;
}

.field-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1.5rem;
}
.field-row .field {
  flex: 0 1 auto;
}

input[type=text],
input[type=password],
input[type=datetime-local],
input[type=date],
input[type=time],
input[type=number],
textarea,
select {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  color: #0f172a;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 0.55rem 0.7rem;
  line-height: 1.4;
  min-width: 300px;
  max-width: 100%;
  transition: border-color 0.15s, box-shadow 0.15s;
}
input[type=text]:focus,
input[type=password]:focus,
input[type=datetime-local]:focus,
input[type=date]:focus,
input[type=time]:focus,
input[type=number]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

input[type=text]:disabled,
input[type=text]:read-only,
input[type=datetime-local]:disabled,
input[type=date]:disabled,
input[type=time]:disabled,
textarea:read-only {
  background: #e2e8f0;
  color: #64748b;
}

input[type=file] {
  display: inline-block;
  font-size: 0.95rem;
}

input.non_table_input {
  margin-top: 0.6rem;
}

textarea {
  width: 100%;
}

input[type=checkbox] {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  accent-color: #2563eb;
}

label {
  font-size: 0.95rem;
}

.text_right {
  text-align: right;
}

button.soclub-button,
input[type=submit].soclub-button,
a.soclub-button {
  display: inline-block;
  padding: 0.65rem 1.75rem;
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, box-shadow 0.15s;
  text-decoration: none;
}
button.soclub-button:hover, button.soclub-button:focus,
input[type=submit].soclub-button:hover,
input[type=submit].soclub-button:focus,
a.soclub-button:hover,
a.soclub-button:focus {
  background: #1d4ed8;
  outline: none;
  color: #fff;
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.25);
}
button.soclub-button:disabled,
input[type=submit].soclub-button:disabled,
a.soclub-button:disabled {
  background: #94a3b8;
  cursor: not-allowed;
  box-shadow: none;
}

button.block, input[type=submit].block {
  display: block;
  min-width: 280px;
  margin-top: 1rem;
}

button.bottom_right, input[type=submit].bottom_right {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  z-index: 90;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.18);
}

button.bottom_middle, input[type=submit].bottom_middle {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 2rem;
  z-index: 90;
  background: #64748b;
}
button.bottom_middle:hover, button.bottom_middle:focus, input[type=submit].bottom_middle:hover, input[type=submit].bottom_middle:focus {
  background: #475569;
}

@media (min-width: 769px) {
  .member-content {
    padding-bottom: 7rem;
  }
}
.content_centerer_outer {
  text-align: center;
  margin-top: 12vh;
}

.content_centerer_inner {
  text-align: left;
  display: inline-block;
}

#login_form {
  display: inline-block;
}

span.fa {
  font-size: 1.5rem;
  padding-right: 0.6rem;
  display: inline-block;
}

span.fa-no-padding {
  font-size: 1.25rem;
  display: inline-block;
  color: #2563eb;
}

span.fa-small {
  font-size: 1rem;
  display: inline-block;
  color: #64748b;
}
span.fa-small:hover {
  color: #dc2626;
}

span.fa-regular {
  font-size: 1.1rem;
  display: inline-block;
}

.response-options-edit {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.25rem;
}

.response-option-edit {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  border: 2px solid #cbd5e1;
  border-radius: 12px;
  background: #ffffff;
}
.response-option-edit .response-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #cbd5e1;
  background: #ffffff;
  font-size: 0.875rem;
  color: #cbd5e1;
}
.response-option-edit .response-edit-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.response-option-edit .response-edit-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #64748b;
  margin-bottom: 0.3rem;
}
.response-option-edit input[type=text] {
  min-width: 0;
  width: 100%;
}

.response-option-edit.response-accept {
  border-color: rgba(22, 163, 74, 0.45);
}
.response-option-edit.response-accept .response-mark {
  background: #16a34a;
  border-color: #16a34a;
  color: #fff;
}
.response-option-edit.response-accept .response-edit-label {
  color: #16a34a;
}

.response-option-edit.response-tentative {
  border-color: rgba(180, 83, 9, 0.45);
}
.response-option-edit.response-tentative .response-mark {
  background: #b45309;
  border-color: #b45309;
  color: #fff;
}
.response-option-edit.response-tentative .response-edit-label {
  color: #b45309;
}

.response-option-edit.response-decline {
  border-color: rgba(220, 38, 38, 0.45);
}
.response-option-edit.response-decline .response-mark {
  background: #dc2626;
  border-color: #dc2626;
  color: #fff;
}
.response-option-edit.response-decline .response-edit-label {
  color: #dc2626;
}

fieldset {
  border: 1px solid #cbd5e1 !important;
  border-radius: 10px;
  padding: 0 1.4em 1.4em !important;
  margin: 0 0 1.5em !important;
  box-shadow: none;
}

legend {
  width: auto;
  padding: 0 0.6em;
  border-bottom: none;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #64748b;
}

.nav-tabs {
  display: flex;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #cbd5e1;
}
.nav-tabs > li > a {
  display: block;
  padding: 0.6rem 1rem;
  color: #64748b;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.15s, border-color 0.15s;
}
.nav-tabs > li > a:hover {
  color: #0f172a;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  color: #2563eb;
  border-bottom-color: #2563eb;
}

.tab-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.25rem 0;
}

.quick-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem;
  margin: 0 0 1.5rem;
  padding: 0.5rem 0.75rem;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}
.quick-nav .quick-nav-label {
  color: #64748b;
  font-size: 0.875rem;
  font-weight: 600;
  margin-right: 0.25rem;
}
.quick-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.7rem;
  border-radius: 6px;
  color: #0f172a;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: background 0.15s, color 0.15s;
}
.quick-nav a:hover {
  background: #f8fafc;
  color: #2563eb;
}
.quick-nav a i {
  color: #2563eb;
}

.member-content fieldset[id],
#tabs {
  scroll-margin-top: 64px;
}

@media (max-width: 768px) {
  .quick-nav {
    top: 56px;
  }
  .member-content fieldset[id],
#tabs {
    scroll-margin-top: calc(56px + 64px);
  }
}
.loading_view {
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.35);
  position: fixed;
  inset: 0;
  z-index: 400;
}
.loading_view .loading_icon {
  position: absolute;
  font-size: 120px;
  top: 35%;
  left: 0;
  right: 0;
  text-align: center;
  color: #fff;
}

.note-editable {
  background: #ffffff;
}

@media (max-width: 768px) {
  input[type=text], input[type=password], input[type=datetime-local], input[type=date], input[type=time], input[type=number], textarea, select {
    min-width: 0;
    width: 100%;
  }
  .field-row .field {
    flex-basis: 100%;
  }
  button.bottom_right, input[type=submit].bottom_right,
button.bottom_middle, input[type=submit].bottom_middle {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 1rem;
  }
}
.sidebar-link-body {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.sidebar-link-sub {
  font-size: 0.75rem;
  color: #38bdf8;
  font-weight: 600;
}

.plan-status {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.plan-badge {
  align-self: flex-start;
  display: inline-block;
  padding: 0.3em 0.9em;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
}

.plan-badge-basic {
  background: #64748b;
}

.plan-badge-pro {
  background: #2563eb;
}

.plan-note {
  margin: 0;
  color: #64748b;
  font-size: 0.95rem;
}

.plan-warning {
  margin: 0;
  color: #dc2626;
  font-weight: 600;
  font-size: 0.95rem;
}

.plan-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.plan-actions form {
  margin: 0;
}

.usage-rows {
  display: flex;
  flex-direction: column;
}

.usage-row {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid #cbd5e1;
}

.usage-row:last-child {
  border-bottom: none;
}

.usage-label {
  flex: 0 0 8.5rem;
  color: #64748b;
  font-size: 0.95rem;
}

.usage-label i {
  width: 18px;
  text-align: center;
  margin-right: 0.25rem;
}

.usage-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
}

.usage-value .usage-cap {
  font-size: 0.875rem;
  font-weight: 400;
  color: #64748b;
}

.usage-value.usage-muted {
  font-size: 0.95rem;
  font-weight: 400;
  color: #64748b;
}

.usage-period {
  margin-top: 1rem;
}

.plan-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.plan-card {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 1.4rem;
  background: #ffffff;
}

.plan-card-current {
  border-color: #2563eb;
  box-shadow: 0 0 0 1px #2563eb;
}

.plan-card-top {
  margin-bottom: 1rem;
}

.plan-card-name {
  margin: 0;
  font-size: 1.1rem;
}

.plan-card-price {
  margin-top: 0.2rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: #0f172a;
}

.plan-card-current-badge {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #2563eb;
}

.plan-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem;
  flex: 1 1 auto;
}

.plan-card-features li {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.35rem 0;
  font-size: 0.95rem;
}

.plan-card-features .feature-included i {
  color: #16a34a;
}

.plan-card-features .feature-excluded {
  color: #64748b;
}

.plan-card-features .feature-excluded i {
  color: #dc2626;
}

.plan-card-action {
  margin: 0;
}

@media (max-width: 768px) {
  .plan-cards {
    flex-direction: column;
  }
}

/*# sourceMappingURL=admin.css.map */
