* { box-sizing: border-box; }

    :root {
      --dashboard-bg: #08090d;
      --dashboard-panel: #12141a;
      --dashboard-panel-soft: #171922;
      --dashboard-sidebar: #000000;
      --dashboard-sidebar-2: #000000;
      --dashboard-text: #e6e9f2;
      --dashboard-muted: #8b90a3;
      --dashboard-border: #1e2230;

      --dashboard-purple: #6c5ce7;
      --dashboard-purple-soft: #5a4fd1;
      --dashboard-blue: #2f9fd6;
      --dashboard-green: #2ea97d;
      --dashboard-orange: #c9942f;

      --dashboard-radius: 14px;
      --dashboard-shadow: none;
    }

    body {
      margin: 0;
      font-family: Inter, Arial, sans-serif;
      background: var(--dashboard-bg);
      color: var(--dashboard-text);
    }

    .dashboard-app {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 232px 1fr;
    }

    .dashboard-sidebar {
      background: linear-gradient(180deg, var(--dashboard-sidebar), var(--dashboard-sidebar-2) 100%);
      color: #fff;
      padding: 20px 16px;
      position: sticky;
      top: 0;
      height: 100vh;
      overflow-y: auto;
    }

    .dashboard-sidebar h6 {
      margin: 8px 8px 16px;
      font-size: 11px;
      letter-spacing: 0.12em;
      color: rgba(255,255,255,0.45);
      text-transform: uppercase;
    }

    .dashboard-nav-group, .dashboard-nav-sub {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .dashboard-panel-menu {
      display: grid;
      gap: 8px;
    }

    .dashboard-rank-panel {
      display: grid;
      gap: 8px;
      margin-bottom: 14px;
      padding: 14px 12px;
      border: 1px solid var(--dashboard-border);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.02);
    }

    .dashboard-rank-panel h3 {
      margin: 0;
      font-size: 16px;
      letter-spacing: 0.03em;
      text-transform: uppercase;
      color: #ffffff;
    }

    .dashboard-rank-panel-name,
    .dashboard-rank-panel-meta {
      margin: 0;
      color: var(--dashboard-muted);
      font-size: 13px;
    }

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

    .dashboard-menu-toggle-btn {
      width: 100%;
      border: 0;
      background: transparent;
      color: rgba(255,255,255,0.88);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 12px;
      border-radius: 10px;
      font-size: 15px;
      cursor: pointer;
      text-align: left;
    }

    .dashboard-menu-toggle-btn:hover {
      background: rgba(255,255,255,0.12);
    }

    .dashboard-menu-item.open > .dashboard-menu-toggle-btn {
      background: rgba(255,255,255,0.08);
      color: #ffffff;
    }

    .dashboard-arrow {
      transition: transform 0.2s ease;
    }

    .dashboard-menu-item:not(.open) > .dashboard-menu-toggle-btn .dashboard-arrow {
      transform: rotate(-90deg);
    }

    .dashboard-nav-sub {
      display: none;
      padding-left: 12px;
      margin-top: 2px;
    }

    .dashboard-menu-item.open > .dashboard-nav-sub {
      display: block;
    }

    .dashboard-nav-sub li a {
      display: block;
      color: rgba(255,255,255,0.74);
      text-decoration: none;
      font-size: 14px;
      padding: 8px 12px;
      border-radius: 10px;
    }

    .dashboard-nav-sub li a:hover {
      background: rgba(255,255,255,0.12);
      color: #ffffff;
    }

    .dashboard-content {
      padding: 26px 18px 18px;
    }

    .dashboard {
      display: grid;
      grid-template-columns: 1fr 320px;
      gap: 20px;
      align-items: start;
    }

    .dashboard-panel-content {
      display: grid;
      gap: 20px;
      align-content: start;
      justify-content: start;
    }

    .dashboard-panel-persistent {
      align-self: start;
    }

    .account-profile {
      display: grid;
      gap: 22px;
      color: var(--dashboard-text);
    }

    .account-profile-header {
      display: flex;
      align-items: center;
      gap: 18px;
    }

    .account-profile-avatar {
      width: 96px;
      height: 96px;
      object-fit: cover;
      border: 1px solid var(--dashboard-border);
      background: #111111;
      flex: 0 0 96px;
    }

    .account-profile-summary {
      min-width: 0;
    }

    .account-profile-summary h2 {
      margin: 0 0 6px 0;
      font-size: 28px;
      line-height: 1.15;
    }

    .account-profile-meta,
    .account-profile-muted,
    .account-profile-help {
      color: var(--dashboard-muted);
    }

    .account-profile-meta,
    .account-profile-status {
      margin: 0 0 6px 0;
    }

    .account-profile-form {
      display: grid;
      gap: 14px;
      max-width: 560px;
    }

    .account-profile-form h3 {
      margin: 0;
      font-size: 20px;
    }

    .account-profile-form label {
      display: grid;
      gap: 6px;
      color: rgba(255,255,255,0.88);
      font-size: 14px;
    }

    .account-profile-social-section {
      display: grid;
      gap: 14px;
      padding: 14px;
      border: 1px solid var(--dashboard-border);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.02);
    }

    .account-profile-social-section h3 {
      margin: 0;
      font-size: 18px;
    }

    .account-profile-form .account-profile-checkbox {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .account-profile-checkbox input {
      width: auto;
      min-height: 0;
    }

    .account-profile-form input,
    .account-profile-form textarea {
      width: 100%;
      border: 1px solid var(--dashboard-border);
      border-radius: 8px;
      background: #050505;
      color: #ffffff;
      padding: 10px 12px;
      font: inherit;
    }

    .account-profile-form textarea {
      resize: vertical;
      min-height: 82px;
    }

    .account-profile-save {
      width: fit-content;
      min-height: 40px;
      border: 1px solid #ffb400;
      border-radius: 8px;
      background: #ffb400;
      color: #171717;
      font-weight: 700;
      padding: 0 16px;
      cursor: pointer;
    }

    .account-profile-edit-link {
      color: #ffb400;
      text-decoration: none;
      font-weight: 700;
    }

    .account-profile-socials-block {
      display: grid;
      gap: 12px;
      max-width: 640px;
    }

    .account-profile-socials-block h3 {
      margin: 0;
      font-size: 20px;
    }

    .account-profile-socials {
      display: grid;
      gap: 10px;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .account-profile-social-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 10px 12px;
      border: 1px solid var(--dashboard-border);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.02);
    }

    .account-profile-social-label {
      color: var(--dashboard-muted);
      font-weight: 700;
      flex: 0 0 auto;
    }

    .account-profile-social-value {
      min-width: 0;
      text-align: right;
      overflow-wrap: anywhere;
    }

    .account-profile-social-value a {
      color: #ffb400;
      text-decoration: none;
    }

    .account-dashboard {
      display: grid;
      gap: 22px;
    }

    .account-dashboard-cards {
      display: grid;
      grid-template-columns: repeat(12, minmax(0, 1fr));
      gap: 18px;
      align-items: start;
    }

    .account-dashboard-card {
      min-width: 0;
    }

    .account-dashboard-card--span-12 {
      grid-column: span 12;
    }

    .account-dashboard-card--span-8 {
      grid-column: span 8;
    }

    .account-dashboard-card--span-6 {
      grid-column: span 6;
    }

    .account-dashboard-card--span-4 {
      grid-column: span 4;
    }

    @media (max-width: 1100px) {
      .account-dashboard-card--span-8,
      .account-dashboard-card--span-6,
      .account-dashboard-card--span-4 {
        grid-column: span 12;
      }
    }

    .account-dashboard h2,
    .account-dashboard h3 {
      margin: 0;
    }

    .account-user-tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
    }

    .account-user-tab {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 36px;
      padding: 0 14px;
      border: 1px solid var(--dashboard-border);
      border-radius: 8px;
      background: var(--dashboard-panel-soft);
      color: rgba(255, 255, 255, 0.88);
      text-decoration: none;
      font-size: 14px;
      font-weight: 700;
      line-height: 1;
    }

    .account-user-tab:hover {
      background: rgba(255, 255, 255, 0.09);
      color: #ffffff;
    }

    .account-user-tab.is-active {
      background: #ffb400;
      border-color: #ffb400;
      color: #171717;
    }

    .account-dashboard-widgets {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 14px;
    }

    .account-dashboard-widget {
      display: grid;
      gap: 8px;
      border: 1px solid var(--dashboard-border);
      border-radius: 8px;
      padding: 16px;
      background: var(--dashboard-panel);
    }

    .account-admin-stats .account-dashboard-widget:last-child {
      gap: 10px;
    }

    .account-dashboard-widget-label {
      color: var(--dashboard-muted);
      font-size: 13px;
    }

    .account-dashboard-widget strong {
      font-size: 24px;
      line-height: 1.1;
    }

    .account-admin-stats-group {
      display: grid;
      gap: 0;
      border: 1px solid var(--dashboard-border);
      border-radius: 8px;
      overflow: hidden;
      background: var(--dashboard-panel);
      padding: 12px;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
    }

    .account-admin-stats-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 14px 16px;
    }

    .account-admin-stats-row + .account-admin-stats-row {
      border-top: 1px solid var(--dashboard-border);
    }

    .account-admin-stats-row strong {
      font-size: 24px;
      line-height: 1;
    }

    .account-admin-traffic-overview {
      display: grid;
      gap: 14px;
      padding: 14px;
      border: 1px solid var(--dashboard-border);
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.02);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
    }

    .account-admin-period-tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 2px 0 4px;
    }

    .account-admin-period-tab {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 36px;
      padding: 8px 14px;
      border: 1px solid var(--dashboard-border);
      border-radius: 8px;
      background: var(--dashboard-panel);
      color: var(--dashboard-text);
      text-decoration: none;
      font-size: 14px;
      font-weight: 700;
    }

    .account-admin-period-tab:hover {
      background: rgba(255, 255, 255, 0.08);
    }

    .account-admin-period-tab.is-active {
      background: #ffb400;
      border-color: #ffb400;
      color: #171717;
    }

    .account-admin-traffic-overview h3,
    .account-admin-country-panel h3 {
      margin: 0;
      font-size: 18px;
    }

    .account-admin-traffic-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 14px;
    }

    .account-admin-traffic-grid .account-dashboard-widget strong {
      font-size: 26px;
    }

    .account-admin-traffic-table {
      display: grid;
      gap: 12px;
      padding: 14px;
      border: 1px solid var(--dashboard-border);
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.02);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
    }

    .account-admin-table-header {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 12px;
    }

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

    .account-admin-traffic-list {
      width: 100%;
      border-collapse: collapse;
      min-width: 740px;
    }

    .account-admin-traffic-list th,
    .account-admin-traffic-list td {
      padding: 12px 10px;
      border-bottom: 1px solid var(--dashboard-border);
      text-align: left;
      vertical-align: top;
    }

    .account-admin-traffic-list th {
      color: var(--dashboard-muted);
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .account-admin-traffic-url {
      word-break: break-word;
    }

    .account-admin-active-empty {
      margin: 0;
      color: var(--dashboard-muted);
      font-size: 13px;
    }

    .account-admin-active-list {
      display: grid;
      gap: 8px;
      list-style: none;
      margin: 0;
      padding: 0;
      max-height: 220px;
      overflow: auto;
    }

    .account-admin-active-list li {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
      padding: 8px 10px;
      border: 1px solid var(--dashboard-border);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.02);
    }

    .account-admin-active-list li strong {
      font-size: 14px;
      line-height: 1.2;
    }

    .account-admin-active-list li span {
      color: var(--dashboard-muted);
      font-size: 12px;
    }

    .account-admin-stats-active {
      display: grid;
      gap: 12px;
      padding: 14px;
      border: 1px solid var(--dashboard-border);
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.02);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
    }

    .account-home-hits-panel {
      display: grid;
      gap: 14px;
      padding: 14px;
      border: 1px solid var(--dashboard-border);
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.02);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
    }

    .account-home-hits-chart-wrap {
      width: 100%;
      overflow: hidden;
    }

    .account-home-hits-svg {
      display: block;
      width: 100%;
      height: auto;
      min-height: 240px;
    }

    .account-home-hits-empty {
      margin: 0;
      color: var(--dashboard-muted);
      font-size: 13px;
    }

    .account-maintenance-panel {
      display: grid;
      gap: 12px;
    }

    .account-maintenance-panel .account-admin-table-header {
      align-items: center;
    }

    .account-maintenance-form {
      display: flex;
      align-items: center;
      gap: 10px;
      margin: 0;
    }

    .account-maintenance-form .account-user-action-button {
      min-width: 132px;
    }

    .account-maintenance-status {
      display: grid;
      gap: 4px;
      padding-top: 2px;
    }

    .account-maintenance-status strong {
      font-size: 22px;
      line-height: 1.1;
    }

    .account-admin-country-panel {
      display: grid;
      gap: 12px;
      padding: 14px;
      border: 1px solid var(--dashboard-border);
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.02);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
    }

    .account-admin-country-empty {
      margin: 0;
      color: var(--dashboard-muted);
      font-size: 13px;
    }

    .account-admin-country-chart-wrap {
      display: flex;
      justify-content: center;
    }

    .account-admin-country-pie {
      width: 180px;
      height: 180px;
      border-radius: 50%;
      border: 1px solid var(--dashboard-border);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
    }

    .account-admin-country-list {
      display: grid;
      gap: 8px;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .account-admin-country-list li {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      padding: 8px 10px;
      border: 1px solid var(--dashboard-border);
      border-radius: 8px;
      background: rgba(255,255,255,0.02);
    }

    .account-admin-country-list strong {
      flex: 1 1 auto;
      min-width: 0;
    }

    .account-admin-country-list span {
      color: var(--dashboard-muted);
      font-size: 12px;
      flex: 0 0 auto;
    }

    .account-admin-country-swatch {
      width: 10px;
      height: 10px;
      border-radius: 999px;
      flex: 0 0 auto;
    }

    .account-user-view-stats {
      display: grid;
      gap: 18px;
    }

    .account-user-view-main {
      display: grid;
      gap: 18px;
      align-content: start;
    }

    .account-user-view-main > p {
      margin: 0;
    }

    .account-user-view-details {
      display: grid;
      gap: 16px;
    }

    .account-user-stats-group,
    .account-user-view-history {
      display: grid;
      gap: 0;
      padding: 14px;
      border: 1px solid var(--dashboard-border);
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.02);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
    }

    .account-user-detail-section {
      display: grid;
      gap: 10px;
    }

    .account-user-detail-section h3 {
      margin: 0;
      font-size: 18px;
    }

    .account-user-detail-grid {
      display: grid;
      gap: 0;
      border: 1px solid var(--dashboard-border);
      border-radius: 8px;
      overflow: hidden;
      background: var(--dashboard-panel);
    }

    .account-user-detail-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 12px 14px;
    }

    .account-user-detail-row + .account-user-detail-row {
      border-top: 1px solid var(--dashboard-border);
    }

    .account-user-detail-row strong {
      font-size: 14px;
      line-height: 1.2;
      text-align: right;
      overflow-wrap: anywhere;
      max-width: 60%;
    }

    .account-user-stats-group {
      display: grid;
      gap: 0;
      border: 1px solid var(--dashboard-border);
      border-radius: 8px;
      overflow: hidden;
      background: var(--dashboard-panel);
    }

    .account-user-stats-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 12px 14px;
    }

    .account-user-stats-row + .account-user-stats-row {
      border-top: 1px solid var(--dashboard-border);
    }

    .account-user-stats-row strong {
      font-size: 18px;
      line-height: 1.1;
      text-align: right;
      overflow-wrap: anywhere;
    }

    .account-user-view-history {
      display: grid;
      gap: 10px;
    }

    .account-user-view-history h3 {
      margin: 0;
      font-size: 18px;
    }

    .account-user-history-list,
    .account-user-ip-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: 8px;
    }

    .account-user-history-list li,
    .account-user-ip-list li {
      display: grid;
      gap: 4px;
      border: 1px solid var(--dashboard-border);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.02);
      padding: 10px 12px;
    }

    .account-user-history-list li strong {
      font-size: 13px;
      line-height: 1.2;
    }

    .account-user-history-list li span,
    .account-user-ip-list li {
      color: var(--dashboard-muted);
      font-size: 12px;
      overflow-wrap: anywhere;
    }

    .account-dashboard-logins {
      display: grid;
      gap: 12px;
    }

    .account-dashboard-logins ul {
      display: grid;
      gap: 8px;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .account-dashboard-logins li {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      border-bottom: 1px solid var(--dashboard-border);
      padding: 0 0 8px 0;
      color: var(--dashboard-muted);
    }

    .account-user-table {
      display: grid;
      gap: 10px;
    }

    .account-user-table-header,
    .account-user-table .account-user-row {
      display: grid;
      grid-template-columns: 1.4fr 1fr 88px 1.2fr 72px 1fr 1fr 1fr 260px;
      gap: 12px;
      align-items: center;
    }

    .account-user-table-header {
      padding: 0 0 10px;
      border-bottom: 1px solid var(--dashboard-border);
      color: var(--dashboard-muted);
      font-size: 13px;
      letter-spacing: 0.02em;
      text-transform: uppercase;
    }

    .account-user-table-actions-label {
      justify-self: end;
    }

    .account-user-row {
      padding: 8px 0;
      border-bottom: 1px solid var(--dashboard-border);
    }

    .account-user-cell {
      min-width: 0;
      overflow-wrap: anywhere;
    }

    .account-user-name {
      color: #ffffff;
      font-weight: 700;
    }

    .account-user-row-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      justify-content: flex-end;
      flex-wrap: nowrap;
      min-width: 0;
    }

    .account-user-email {
      color: #ffffff;
      font-weight: 600;
    }

    .auth-form-message {
      min-height: 20px;
      font-size: 14px;
    }

    .auth-form-message.is-error {
      color: #ff827a;
    }

    .auth-form-message.is-success {
      color: #8ee59c;
    }

    .account-list {
      display: grid;
      gap: 16px;
    }

    .account-list h2 {
      margin: 0;
    }

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

    .account-list-item {
      display: grid;
      gap: 12px;
      border: 1px solid var(--dashboard-border);
      border-radius: 8px;
      background: var(--dashboard-panel);
      padding: 16px;
    }

    .account-list-item.is-unread {
      border-color: rgba(255, 180, 0, 0.5);
    }

    .account-list-item-header {
      display: flex;
      justify-content: space-between;
      gap: 14px;
      align-items: flex-start;
    }

    .account-list-item h3 {
      margin: 0 0 6px 0;
      font-size: 18px;
    }

    .account-list-body {
      margin: 0;
      color: rgba(255,255,255,0.82);
      line-height: 1.5;
    }

    .account-inline-form {
      flex: 0 0 auto;
    }

    .account-reply-form {
      display: grid;
      gap: 10px;
      max-width: 640px;
    }

    .account-reply-form label {
      display: grid;
      gap: 6px;
      color: rgba(255,255,255,0.88);
      font-size: 14px;
    }

    .account-reply-form textarea {
      width: 100%;
      min-height: 82px;
      border: 1px solid var(--dashboard-border);
      border-radius: 8px;
      background: #050505;
      color: #ffffff;
      padding: 10px 12px;
      font: inherit;
      resize: vertical;
    }

    .account-danger-button {
      min-height: 34px;
      border: 1px solid #6b1d1d;
      border-radius: 8px;
      background: #321010;
      color: #ffb3ad;
      padding: 0 12px;
      cursor: pointer;
    }

    .account-user-action-button,
    .account-user-edit-cancel {
      min-height: 34px;
      border: 1px solid var(--dashboard-border);
      border-radius: 8px;
      background: var(--dashboard-panel-soft);
      color: #ffffff;
      padding: 0 12px;
      cursor: pointer;
    }

    .account-user-view-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
    }

    .account-user-rank-form {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: nowrap;
    }

    .account-user-rank-select {
      min-height: 34px;
      border: 1px solid var(--dashboard-border);
      border-radius: 8px;
      background: #050505;
      color: #ffffff;
      padding: 0 10px;
      width: 84px;
      flex: 0 0 84px;
    }

    .account-user-edit-modal {
      position: fixed;
      inset: 0;
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 60;
    }

    .account-user-edit-modal.is-open {
      display: flex;
    }

    .account-user-edit-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.72);
    }

    .account-user-edit-dialog {
      position: relative;
      z-index: 1;
      width: min(1080px, calc(100vw - 32px));
      max-height: calc(100vh - 32px);
      overflow: auto;
      border: 1px solid var(--dashboard-border);
      border-radius: 8px;
      background: var(--dashboard-panel);
      padding: 18px;
      display: grid;
      gap: 14px;
    }

    .account-user-edit-close {
      width: 32px;
      height: 32px;
      border: 1px solid var(--dashboard-border);
      border-radius: 8px;
      background: #050505;
      color: #ffffff;
      justify-self: end;
      cursor: pointer;
    }

    .account-user-edit-form {
      display: grid;
      gap: 16px;
    }

    .account-user-edit-password {
      display: grid;
      gap: 10px;
    }

    .account-user-edit-password h4 {
      margin: 0;
      font-size: 16px;
    }

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

    .account-user-edit-grid label {
      display: grid;
      gap: 6px;
      color: rgba(255, 255, 255, 0.88);
      font-size: 14px;
    }

    .account-user-edit-grid input,
    .account-user-edit-grid select,
    .account-user-edit-grid textarea {
      width: 100%;
      border: 1px solid var(--dashboard-border);
      border-radius: 8px;
      background: #050505;
      color: #ffffff;
      padding: 10px 12px;
      font: inherit;
    }

    .account-user-edit-grid textarea {
      min-height: 90px;
      resize: vertical;
    }

    .account-user-edit-grid .account-profile-checkbox {
      grid-column: span 1;
      align-items: center;
      display: flex;
      gap: 8px;
    }

    .account-user-edit-grid .account-profile-checkbox input {
      width: auto;
    }

    .account-user-edit-actions {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 10px;
      flex-wrap: wrap;
    }
