/* Ascentra Premium Dark Glassmorphic Design System */

:root {
  --bg-primary: #0a0b10;
  --bg-secondary: rgba(18, 20, 29, 0.7);
  --bg-tertiary: rgba(30, 32, 45, 0.5);
  
  --accent-purple: #704df4;
  --accent-purple-glow: rgba(112, 77, 244, 0.4);
  --accent-cyan: #00d2ff;
  --accent-cyan-glow: rgba(0, 210, 255, 0.3);
  
  --text-primary: #f1f2f6;
  --text-secondary: #a4a9c6;
  --text-muted: #676b88;
  
  --border-color: rgba(255, 255, 255, 0.08);
  --border-color-glow: rgba(112, 77, 244, 0.3);
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --glass-blur: blur(16px);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-purple) var(--bg-primary);
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Background Glowing Orbs */
.glow-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  z-index: -1;
  pointer-events: none;
}

.orb-1 {
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, var(--accent-purple-glow) 0%, transparent 70%);
  top: -15%;
  right: -10%;
}

.orb-2 {
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, var(--accent-cyan-glow) 0%, transparent 70%);
  bottom: -20%;
  left: -15%;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--accent-purple);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #5c3ce0;
}

/* AUTHENTICATION SHIELD */
.auth-panel {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.auth-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  backdrop-filter: var(--glass-blur);
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  max-width: 650px;
  box-shadow: var(--shadow-lg);
  position: relative;
  transition: transform 0.3s ease;
}

.auth-brand {
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 5px;
  color: var(--text-primary);
  letter-spacing: -1px;
}

.logo-accent {
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.auth-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 400;
  text-align: center;
  margin-bottom: 30px;
}

.auth-tabs {
  display: flex;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 25px;
}

.auth-tab {
  flex: 1;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 600;
  padding: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.auth-tab.active {
  color: var(--accent-purple);
}

.auth-tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
}

.auth-form {
  display: none;
}

.auth-form.active-form {
  display: block;
}

/* FORMS STYLE */
.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-row .form-group {
  flex: 1;
}

label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.required {
  color: #ff4757;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="url"],
input[type="date"],
input[type="datetime-local"],
select,
textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent-purple);
  box-shadow: 0 0 0 3px rgba(112, 77, 244, 0.15);
  background: rgba(255, 255, 255, 0.08);
}

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

input[type="file"] {
  background: transparent;
  border: 1px dashed var(--border-color);
  padding: 15px;
  border-radius: 10px;
  cursor: pointer;
  color: var(--text-secondary);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 25px;
}

.checkbox-group input {
  margin-top: 4px;
}

.checkbox-group label {
  text-transform: none;
  font-size: 13px;
  line-height: 1.5;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-purple), #5c3ce0);
  color: white;
  border: none;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px var(--accent-purple-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(112, 77, 244, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.auth-submit-btn {
  width: 100%;
  margin-top: 10px;
}

.hidden {
  display: none !important;
}

/* COMMAND SHELL LAYOUT */
.command-shell {
  display: flex;
  min-height: 100vh;
}

/* Sidebar Styling */
.sidebar {
  width: 280px;
  background: var(--bg-secondary);
  border-right: 1px solid var(--border-color);
  backdrop-filter: var(--glass-blur);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  height: 100vh;
  position: sticky;
  top: 0;
  z-index: 100;
}

.sidebar-header {
  padding: 25px 20px;
  border-bottom: 1px solid var(--border-color);
}

.brand {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.role-badge {
  display: inline-block;
  font-size: 11px;
  background: var(--accent-purple-glow);
  color: var(--accent-cyan);
  padding: 3px 8px;
  border-radius: 5px;
  font-weight: 600;
  margin-top: 8px;
  text-transform: uppercase;
}

.sidebar-nav {
  padding: 20px 10px;
  flex-grow: 1;
  overflow-y: auto;
}

.nav-section-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 15px 10px 5px 10px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  margin-bottom: 4px;
  transition: all 0.2s ease;
}

.nav-item:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
}

.nav-item.active {
  background: linear-gradient(90deg, rgba(112, 77, 244, 0.15) 0%, rgba(112, 77, 244, 0.03) 100%);
  color: var(--text-primary);
  border-left: 3px solid var(--accent-purple);
  padding-left: 12px;
}

.sidebar-footer {
  padding: 20px;
  border-top: 1px solid var(--border-color);
}

.user-profile-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: 700;
  font-size: 14px;
}

.user-text {
  overflow: hidden;
}

.user-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user-email {
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn-logout {
  width: 100%;
  padding: 8px;
  background: rgba(255, 71, 87, 0.1);
  color: #ff4757;
  border: 1px solid rgba(255, 71, 87, 0.2);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-logout:hover {
  background: rgba(255, 71, 87, 0.25);
  color: #ff6b81;
}

/* MAIN CONTENT VIEWPORT */
.main-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow-y: auto;
}

.main-header {
  padding: 20px 30px;
  border-bottom: 1px solid var(--border-color);
  background: rgba(10, 11, 16, 0.6);
  backdrop-filter: var(--glass-blur);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 90;
}

.main-header h2 {
  font-size: 22px;
  font-weight: 700;
}

.header-notification-bell {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  color: var(--text-primary);
  font-size: 16px;
}

.header-notification-bell:hover {
  background: rgba(255, 255, 255, 0.08);
}

.notification-count {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #ff4757;
  color: white;
  font-size: 10px;
  padding: 2px 5px;
  border-radius: 50%;
  font-weight: 700;
}

.dashboard-views-container {
  padding: 30px;
  flex-grow: 1;
}

.dashboard-view {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.dashboard-view.active {
  display: block;
}

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

/* PANEL CARD */
.panel-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  padding: 25px;
  box-shadow: var(--shadow-md);
  margin-bottom: 25px;
}

.panel-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
}

.section-actions-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: -15px;
  margin-bottom: 25px;
}

/* STATS CARDS GRID */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 25px;
}

.stat-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: var(--accent-purple-glow);
  box-shadow: 0 0 15px rgba(112, 77, 244, 0.15);
  transform: translateY(-2px);
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--bg-tertiary);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
}

.stat-label {
  font-size: 12px;
  color: var(--text-secondary);
}

/* DOUBLE COLUMN ROW */
.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

@media (max-width: 900px) {
  .grid-2col {
    grid-template-columns: 1fr;
  }
}

.summary-blocks-row {
  display: flex;
  gap: 25px;
}

.flex-1 { flex: 1; }
.flex-2 { flex: 2; }

@media (max-width: 900px) {
  .summary-blocks-row {
    flex-direction: column;
  }
}

/* DATA TABLE */
.table-responsive {
  width: 100%;
  overflow-x: auto;
}

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

.data-table th {
  padding: 12px 15px;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--text-secondary);
  border-bottom: 2px solid var(--border-color);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.data-table td {
  padding: 14px 15px;
  font-size: 14px;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-primary);
}

.data-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

/* BADGES */
.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.badge-pending {
  background: rgba(255, 159, 67, 0.15);
  color: #ff9f43;
}

.badge-approved, .badge-success {
  background: rgba(46, 213, 115, 0.15);
  color: #2ed573;
}

.badge-rejected, .badge-error {
  background: rgba(255, 71, 87, 0.15);
  color: #ff4757;
}

.badge-active {
  background: rgba(0, 210, 255, 0.15);
  color: var(--accent-cyan);
}

/* WELCOME CARD */
.welcome-box {
  background: linear-gradient(135deg, rgba(112, 77, 244, 0.2), rgba(0, 210, 255, 0.1));
  border: 1px solid var(--border-color-glow);
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 25px;
}

.welcome-box h3 {
  font-size: 22px;
  margin-bottom: 5px;
}

.welcome-box p {
  color: var(--text-secondary);
}

/* KANBAN BOARD SYSTEM */
.kanban-board {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 15px;
}

.kanban-column {
  flex: 1;
  min-width: 280px;
  max-width: 320px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  max-height: 70vh;
}

.kanban-column-header {
  padding: 15px;
  border-bottom: 1px solid var(--border-color);
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.count-badge {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 2px 7px;
  border-radius: 10px;
  font-size: 11px;
}

.kanban-cards-list {
  padding: 12px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.kanban-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 15px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.2s ease;
}

.kanban-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent-purple-glow);
}

.kanban-card-title {
  font-size: 14px;
  font-weight: 600;
}

.kanban-card-meta {
  font-size: 12px;
  color: var(--text-secondary);
}

.kanban-card-action {
  margin-top: 10px;
  width: 100%;
  font-size: 12px;
  padding: 6px;
  border-radius: 6px;
}

/* MEETINGS TIMELINE */
.meetings-timeline {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.timeline-item {
  padding: 15px;
  border-left: 2px solid var(--accent-purple);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  transition: all 0.2s ease;
}

.timeline-item:hover {
  background: rgba(255, 255, 255, 0.04);
}

.timeline-item.active {
  border-left-color: var(--accent-cyan);
  background: rgba(0, 210, 255, 0.05);
}

.timeline-title {
  font-weight: 600;
  font-size: 15px;
}

.timeline-date {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 4px;
}

.attendance-check-list {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  padding: 12px;
  border-radius: 8px;
  max-height: 120px;
  overflow-y: auto;
}

.attendance-user-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 13px;
}

/* MENTORSHIP MODULE & DYNAMIC TIMELINE */
.timeline {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-left: 20px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 5px;
  bottom: 5px;
  width: 2px;
  background: var(--border-color);
}

.timeline-node {
  position: relative;
  margin-bottom: 20px;
}

.timeline-node::before {
  content: '';
  position: absolute;
  left: -14px;
  top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-purple);
}

.timeline-node-content {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  padding: 15px;
  border-radius: 10px;
}

.list-selection-panel {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 400px;
  overflow-y: auto;
}

.selection-card {
  padding: 15px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.selection-card:hover, .selection-card.selected {
  border-color: var(--accent-purple);
  background: rgba(112, 77, 244, 0.05);
}

/* AGREEMENT BOX & INVOICE LAYOUTS */
.agreement-box {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.agreement-sign-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 5px;
}

.document-link-box {
  margin-top: 15px;
}

.doc-download-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-cyan);
  text-decoration: none;
  font-size: 13px;
  background: rgba(0, 210, 255, 0.1);
  padding: 6px 12px;
  border-radius: 5px;
}

.chart-container {
  width: 100%;
  height: 220px;
}

/* MODALS */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.2s ease forwards;
}

.modal-content {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  width: 95%;
  max-width: 600px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  animation: scaleUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes scaleUp {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-header {
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h4 {
  font-size: 18px;
  font-weight: 700;
}

.close-modal {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 24px;
  cursor: pointer;
}

.modal-body {
  padding: 25px;
  max-height: 80vh;
  overflow-y: auto;
}

/* INVOICE BUILDER ROW */
.invoice-items-builder {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 15px;
}

.inv-item-row {
  display: flex;
  gap: 10px;
}

.mt-25 { margin-top: 25px; }
.w-100 { width: 100%; }
.mt-15 { margin-top: 15px; }
.mb-15 { margin-bottom: 15px; }

/* TOASTS NOTIFICATIONS BANNER */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  padding: 14px 20px;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  font-size: 14px;
  box-shadow: var(--shadow-md);
  animation: slideIn 0.3s ease forwards;
}

@keyframes slideIn {
  from { transform: translateX(120%); }
  to { transform: translateX(0); }
}

.toast-success {
  background: #2ed573;
}

.toast-error {
  background: #ff4757;
}

/* MODAL SIDEBAR FOR NOTIFICATIONS */
.modal-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 360px;
  background: var(--bg-secondary);
  border-left: 1px solid var(--border-color);
  backdrop-filter: var(--glass-blur);
  z-index: 1001;
  box-shadow: var(--shadow-lg);
  animation: slideInRight 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideInRight {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

.modal-sidebar-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.modal-sidebar-header {
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-sidebar-header h4 {
  font-size: 16px;
  font-weight: 700;
}

.close-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 24px;
  cursor: pointer;
}

.modal-sidebar-body {
  padding: 20px;
  flex-grow: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-sidebar-footer {
  padding: 20px;
  border-top: 1px solid var(--border-color);
}

.notification-item {
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--accent-purple);
  border-radius: 4px;
}

.notification-item.read {
  border-left-color: var(--text-muted);
  opacity: 0.6;
}

.notification-title {
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 4px;
}

.notification-msg {
  font-size: 12px;
  color: var(--text-secondary);
}

.text-center { text-align: center; }
.mt-25 { margin-top: 25px; }

.input-readonly {
  background: var(--bg-tertiary);
  border-color: transparent;
  color: var(--text-secondary);
}
