:root {
  --primary: #C9A161;
  --primary-dark: #A88544;
  --primary-light: #E5D4B3;
  --background: #FAFAF8;
  --surface: #FFFFFF;
  --text-primary: #1A1A1A;
  --text-secondary: #666666;
  --text-muted: #999999;
  --border: #E5E5E5;
  --error: #DC3545;
  --danger: #e74c3c;
  --success: #28A745;
  --warning: #FFC107;
  --info: #17A2B8;
  --sidebar-width: 260px;
  --header-height: 72px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--background);
  color: var(--text-primary);
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.hidden {
  display: none !important;
}

.page {
  display: none;
}

.page.active {
  display: block;
}

/* Login Page */
.login-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--background) 0%, var(--primary-light) 100%);
  padding: 20px;
}

.login-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 48px;
  width: 100%;
  max-width: 420px;
}

.login-header {
  text-align: center;
  margin-bottom: 32px;
}

.logo {
  margin-bottom: 16px;
}

.login-header h1 {
  font-size: 28px;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.login-header .subtitle {
  color: var(--primary);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(201, 161, 97, 0.15);
}

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

.phone-input-group {
  display: flex;
  gap: 8px;
}

.phone-input-group .country-code-select {
  width: 120px;
  flex-shrink: 0;
}

.phone-input-group input {
  flex: 1;
}

.credit-input-group {
  display: flex;
  align-items: center;
  gap: 4px;
}

.credit-input-group .credit-currency {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 0 8px;
}

.credit-input-group input {
  flex: 1;
}

.credit-highlight {
  color: var(--primary);
  font-weight: 600;
}

.company-credit-banner {
  display: flex;
  gap: 24px;
  background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  margin-bottom: 24px;
}

.company-credit-banner > div {
  flex: 1;
  text-align: center;
}

.company-credit-banner .credit-label {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  margin-bottom: 8px;
}

.company-credit-banner .credit-value {
  display: block;
  color: var(--primary);
  font-size: 28px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}

.company-credit-banner .credit-available .credit-value {
  color: var(--success);
}

.error-message {
  background: #FEF2F2;
  color: var(--error);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  margin-bottom: 16px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 500;
  font-family: inherit;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
}

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

.btn-secondary:hover {
  background: var(--background);
}

.btn-danger {
  background: var(--error);
  color: white;
}

.btn-danger:hover {
  background: #C82333;
}

.btn-full {
  width: 100%;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}

/* Dashboard Layout */
#dashboard {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: var(--sidebar-width);
  background: var(--surface);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 100;
}

.sidebar-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.brand-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--text-primary);
}

.nav-menu {
  list-style: none;
  padding: 16px 12px;
  flex: 1;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 4px;
}

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

.nav-item.active {
  background: var(--primary-light);
  color: var(--primary-dark);
}

.nav-item svg {
  flex-shrink: 0;
}

.sidebar-footer {
  padding: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
}

.user-details {
  display: flex;
  flex-direction: column;
}

.user-name {
  font-weight: 500;
  font-size: 14px;
  color: var(--text-primary);
}

.user-role {
  font-size: 12px;
  color: var(--text-muted);
}

.btn-logout {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
}

.btn-logout:hover {
  background: var(--background);
  color: var(--error);
}

/* Main Content */
.main-content {
  flex: 1;
  margin-left: var(--sidebar-width);
  padding: 32px;
}

.dashboard-page {
  display: none;
}

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

.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.page-header h2 {
  font-size: 28px;
  color: var(--text-primary);
}

.date-display {
  color: var(--text-muted);
  font-size: 14px;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.stat-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: var(--shadow-sm);
}

.stat-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon.companies {
  background: #E8F4FD;
  color: #0077B6;
}

.stat-icon.users {
  background: #F3E8FF;
  color: #7C3AED;
}

.stat-icon.requests {
  background: #FEF3C7;
  color: #D97706;
}

.stat-icon.completed {
  background: #D1FAE5;
  color: #059669;
}

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

.stat-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Tables */
.table-container {
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

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

.data-table thead {
  background: var(--background);
}

.data-table th {
  padding: 14px 16px;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--border);
}

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

.data-table tbody tr:last-child td {
  border-bottom: none;
}

.data-table tbody tr:hover {
  background: var(--background);
}

.data-table tbody tr.clickable-row {
  cursor: pointer;
  transition: background-color 0.15s ease, transform 0.1s ease;
}

.data-table tbody tr.clickable-row:hover {
  background: var(--primary-light);
  transform: translateX(2px);
}

.empty-row td {
  text-align: center;
  color: var(--text-muted);
  padding: 48px 16px;
}

/* Status Badges - Enhanced Design */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 24px;
  font-size: 12px;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.status-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.status-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
}

.status-badge .status-icon {
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

.status-pending {
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
  color: #B45309;
  border: 1px solid rgba(217, 119, 6, 0.2);
}

.status-pending .status-icon::before {
  content: '⏳';
}

.status-in_progress {
  background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
  color: #1D4ED8;
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.status-in_progress .status-icon::before {
  content: '⚡';
}

.status-completed {
  background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
  color: #047857;
  border: 1px solid rgba(5, 150, 105, 0.2);
}

.status-completed .status-icon::before {
  content: '✓';
  font-weight: bold;
}

.status-cancelled {
  background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%);
  color: #B91C1C;
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.status-cancelled .status-icon::before {
  content: '✕';
  font-weight: bold;
}

.status-waiting_approval {
  background: linear-gradient(135deg, #EDE9FE 0%, #DDD6FE 100%);
  color: #6D28D9;
  border: 1px solid rgba(124, 58, 237, 0.2);
  animation: pulse-purple 2s ease-in-out infinite;
}

.status-waiting_approval .status-icon::before {
  content: '◎';
}

@keyframes pulse-purple {
  0%, 100% { box-shadow: 0 1px 3px rgba(124, 58, 237, 0.15); }
  50% { box-shadow: 0 2px 8px rgba(124, 58, 237, 0.3); }
}

.status-approved {
  background: linear-gradient(135deg, #DCFCE7 0%, #BBF7D0 100%);
  color: #15803D;
  border: 1px solid rgba(21, 128, 61, 0.2);
}

.status-approved .status-icon::before {
  content: '✓✓';
  font-size: 9px;
  letter-spacing: -2px;
}

/* Role Badges */
.role-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.role-zavi_admin {
  background: var(--primary-light);
  color: var(--primary-dark);
}

.role-company_admin {
  background: #E0E7FF;
  color: #4338CA;
}

.role-member {
  background: #E5E7EB;
  color: #374151;
}

/* Category Badges */
.category-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  background: var(--background);
  color: var(--text-secondary);
  text-transform: capitalize;
}

/* Filters */
.filters-bar {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-group label {
  font-size: 14px;
  color: var(--text-secondary);
}

.filter-group select {
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: inherit;
  background: var(--surface);
  cursor: pointer;
}

.filter-group select:focus {
  outline: none;
  border-color: var(--primary);
}

/* Action Buttons */
.action-btn {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
}

.action-btn:hover {
  background: var(--background);
  color: var(--text-primary);
}

.action-btn.view:hover {
  color: var(--info);
}

.action-btn.edit:hover {
  color: var(--primary);
}

.action-btn.delete:hover {
  color: var(--error);
}

/* Modal - Enhanced Design */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: modalFadeIn 0.2s ease-out;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  background: var(--surface);
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.05);
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalSlideUp {
  from { 
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  to { 
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-content.modal-lg {
  max-width: 720px;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--surface) 0%, rgba(249, 250, 251, 0.5) 100%);
  border-radius: 16px 16px 0 0;
}

.modal-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-header h3::before {
  content: '';
  width: 4px;
  height: 20px;
  background: var(--primary);
  border-radius: 2px;
}

.modal-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: var(--background);
  color: var(--text-muted);
  font-size: 20px;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: #FEE2E2;
  color: #DC2626;
  transform: rotate(90deg);
}

.modal-body {
  padding: 24px;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  background: var(--background);
  border-radius: 0 0 16px 16px;
}

/* Request Detail - Enhanced Design */
.request-detail {
  display: grid;
  gap: 20px;
}

/* Info Section Groups */
.info-section {
  padding: 20px;
  background: linear-gradient(180deg, var(--background) 0%, rgba(249, 250, 251, 0.6) 100%);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.section-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.request-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.info-section .request-info {
  margin-bottom: 0;
}

.info-section .request-description {
  margin-top: 16px;
  border: none;
  padding: 16px;
  background: var(--surface);
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px;
  background: var(--background);
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}

.info-item:hover {
  border-color: var(--primary-light);
  box-shadow: 0 2px 8px rgba(201, 161, 97, 0.1);
}

.info-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.info-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}

.request-description {
  padding: 18px 20px;
  background: linear-gradient(135deg, var(--background) 0%, rgba(249, 250, 251, 0.8) 100%);
  border-radius: 12px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.request-description::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
  border-radius: 4px 0 0 4px;
}

.request-description h4 {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
  padding-left: 8px;
}

.request-description p {
  font-size: 14px;
  color: var(--text-primary);
  line-height: 1.7;
  padding-left: 8px;
}

.status-update {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.status-update label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

.status-update select {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: inherit;
}

/* Request Actions - Enhanced Design */
.request-actions {
  padding: 20px;
  background: linear-gradient(180deg, var(--background) 0%, rgba(249, 250, 251, 0.6) 100%);
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.request-actions h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.request-actions h4::before {
  content: '⚙️';
  font-size: 16px;
}

.request-actions h5 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-top: 20px;
  margin-bottom: 14px;
  padding-top: 18px;
  border-top: 1px dashed var(--border);
}

.request-actions h5:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.complete-request-form {
  margin-top: 18px;
}

.complete-request-form .form-group {
  margin-bottom: 14px;
}

.complete-request-form .form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.complete-request-form .form-group input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.2s ease;
  background: var(--surface);
}

.complete-request-form .form-group input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(201, 161, 97, 0.15);
}

.complete-request-form .form-group input::placeholder {
  color: var(--text-muted);
}

.complete-request-form .action-buttons {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.complete-request-form .action-buttons .btn {
  flex: 1;
}

/* Workflow buttons - Send for Approval / Complete */
.workflow-buttons {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.workflow-buttons .btn {
  flex: 1;
}

/* Cancel section - always at bottom */
.cancel-section {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.cancel-section .btn-danger {
  width: 100%;
}

.invoice-input-group {
  display: flex;
  gap: 8px;
  align-items: center;
}

.invoice-input-group input {
  flex: 1;
}

.btn-icon {
  width: 36px;
  height: 36px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  border-radius: var(--radius-sm);
}

.btn-clear-invoice {
  background: var(--background);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  cursor: pointer;
}

.btn-clear-invoice:hover {
  background: var(--danger);
  color: white;
  border-color: var(--danger);
}

.btn-danger {
  background: var(--danger);
  color: white;
  border: none;
}

.btn-danger:hover {
  background: #c0392b;
}

.info-note {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  padding: 12px;
  background: rgba(201, 161, 97, 0.1);
  border-radius: var(--radius-sm);
}

/* Completion Info */
.completion-info {
  padding: 16px;
  background: rgba(72, 187, 120, 0.1);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(72, 187, 120, 0.3);
}

.completion-info h4 {
  font-size: 14px;
  font-weight: 600;
  color: #22863a;
  margin-bottom: 12px;
}

.invoice-link {
  color: var(--primary);
  text-decoration: none;
}

.invoice-link:hover {
  text-decoration: underline;
}

/* Request History - Enhanced Design */
.request-history {
  padding: 20px;
  background: linear-gradient(180deg, var(--background) 0%, rgba(249, 250, 251, 0.6) 100%);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.request-history h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.request-history h4::before {
  content: '📋';
  font-size: 16px;
}

.history-timeline {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.history-timeline::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 1px;
}

.history-item {
  padding: 14px 14px 14px 24px;
  background: var(--surface);
  border-radius: 10px;
  border: 1px solid var(--border);
  position: relative;
  margin-left: 8px;
  transition: all 0.2s ease;
}

.history-item::before {
  content: '';
  position: absolute;
  left: -14px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;
  border: 2px solid var(--surface);
  box-shadow: 0 0 0 2px var(--primary-light);
}

.history-item:hover {
  border-color: var(--primary-light);
  box-shadow: 0 2px 8px rgba(201, 161, 97, 0.1);
}

.history-action {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.history-details {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 6px;
  line-height: 1.5;
}

.history-time {
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.history-time::before {
  content: '🕐';
  font-size: 10px;
}

/* Priority Badges - Enhanced Design */
.priority-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.priority-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.priority-standard {
  background: linear-gradient(135deg, #F3F4F6 0%, #E5E7EB 100%);
  color: #374151;
  border: 1px solid rgba(55, 65, 81, 0.15);
}

.priority-priority {
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
  color: #92400E;
  border: 1px solid rgba(146, 64, 14, 0.2);
}

.priority-urgent {
  background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%);
  color: #991B1B;
  border: 1px solid rgba(153, 27, 27, 0.2);
  animation: pulse-urgent 2s ease-in-out infinite;
}

@keyframes pulse-urgent {
  0%, 100% { box-shadow: 0 1px 3px rgba(153, 27, 27, 0.15); }
  50% { box-shadow: 0 2px 8px rgba(153, 27, 27, 0.3); }
}

/* Recent Section */
.recent-section {
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.recent-section h3 {
  padding: 20px 24px;
  font-size: 16px;
  border-bottom: 1px solid var(--border);
}

/* Responsive */
@media (max-width: 1024px) {
  .sidebar {
    width: 72px;
  }

  .sidebar-header .brand-name,
  .nav-item span,
  .user-details {
    display: none;
  }

  .nav-item {
    justify-content: center;
    padding: 12px;
  }

  .sidebar-footer {
    flex-direction: column;
    gap: 8px;
  }

  .user-info {
    justify-content: center;
  }

  .main-content {
    margin-left: 72px;
  }
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .filters-bar {
    flex-direction: column;
  }

  .request-info {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* Form Enhancements */
.form-section-title {
  font-size: 15px;
  color: var(--text-primary);
  margin: 24px 0 16px 0;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.form-section-title:first-child {
  margin-top: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-help-text {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* Checkbox Group */
.checkbox-group {
  margin-bottom: 16px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--primary);
}

.checkbox-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}

/* Start Work Form */
.start-work-form {
  padding: 16px;
  background: var(--bg-card);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.start-work-form h5 {
  margin-bottom: 16px;
  font-size: 16px;
  color: var(--text-primary);
}

/* Approval Actions */
.approval-actions {
  padding: 16px;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(139, 92, 246, 0.2);
  margin-bottom: 20px;
}

.approval-actions h5 {
  margin-bottom: 8px;
  font-size: 16px;
  color: #7C3AED;
}

.waiting-approval-info {
  padding: 16px;
  background: var(--bg-card);
  border-radius: 8px;
}

.text-muted {
  color: var(--text-muted);
  font-size: 13px;
}

/* Company Detail Modal */
.company-detail {
  padding: 8px 0;
}

.detail-section {
  margin-bottom: 24px;
}

.detail-section h4 {
  font-size: 14px;
  color: var(--primary);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.detail-item.full-width {
  grid-column: span 2;
}

.detail-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.detail-value {
  font-size: 14px;
  color: var(--text-primary);
}

.user-list {
  list-style: none;
  margin-bottom: 12px;
}

.user-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.user-list li:last-child {
  border-bottom: none;
}

.btn-sm {
  padding: 6px 12px;
  font-size: 13px;
}

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

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

/* Action button view style */
.action-btn.view {
  color: var(--info);
}

.action-btn.view:hover {
  background: rgba(23, 162, 184, 0.1);
}

/* Page Description */
.page-description {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.section-title {
  font-size: 16px;
  color: var(--text-primary);
  margin: 32px 0 16px 0;
}

/* Escalation Stats */

/* Priority Badge */
.priority-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.priority-critical {
  background: #FEE2E2;
  color: #DC2626;
}

.priority-high {
  background: #FEF3C7;
  color: #D97706;
}

.priority-medium {
  background: #DBEAFE;
  color: #2563EB;
}

.priority-low {
  background: #E5E7EB;
  color: #374151;
}

/* SLA Metrics Grid */
.sla-metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.sla-metric-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.sla-metric-header {
  margin-bottom: 12px;
}

.sla-metric-title {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sla-metric-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.sla-metric-target {
  font-size: 12px;
  color: var(--text-muted);
}

.sla-metric-card.success .sla-metric-value {
  color: var(--success);
}

.sla-metric-card.warning .sla-metric-value {
  color: var(--warning);
}

.sla-metric-card.danger .sla-metric-value {
  color: var(--error);
}

/* Section Title with Icons */
.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title svg {
  stroke: var(--text-secondary);
}

/* Service Category Grid */
.service-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.service-category-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-category-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.service-category-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-category-icon.dining {
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
  color: #D97706;
}

.service-category-icon.travel {
  background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
  color: #2563EB;
}

.service-category-icon.gifts {
  background: linear-gradient(135deg, #FCE7F3 0%, #FBCFE8 100%);
  color: #DB2777;
}

.service-category-icon.home {
  background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
  color: #059669;
}

.service-category-icon.events {
  background: linear-gradient(135deg, #EDE9FE 0%, #DDD6FE 100%);
  color: #7C3AED;
}

.service-category-icon.wellness {
  background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%);
  color: #DC2626;
}

.service-category-icon.transportation {
  background: linear-gradient(135deg, #E0E7FF 0%, #C7D2FE 100%);
  color: #4F46E5;
}

.service-category-icon.other {
  background: linear-gradient(135deg, #F3F4F6 0%, #E5E7EB 100%);
  color: #6B7280;
}

.service-category-icon svg {
  stroke: currentColor;
}

.service-category-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.service-category-name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 15px;
}

.service-category-count {
  font-size: 13px;
  color: var(--text-muted);
}

.service-category-compliance {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-secondary);
  text-align: right;
}

.service-category-compliance.compliance-good {
  color: #059669;
}

.service-category-compliance.compliance-warning {
  color: #D97706;
}

.service-category-compliance.compliance-poor {
  color: #DC2626;
}

/* Category Badge */
.category-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: capitalize;
}

.category-dining {
  background: #FEF3C7;
  color: #D97706;
}

.category-travel {
  background: #DBEAFE;
  color: #2563EB;
}

.category-gifts {
  background: #FCE7F3;
  color: #DB2777;
}

.category-home {
  background: #D1FAE5;
  color: #059669;
}

.category-events {
  background: #EDE9FE;
  color: #7C3AED;
}

.category-wellness {
  background: #FEE2E2;
  color: #DC2626;
}

.category-transportation {
  background: #E0E7FF;
  color: #4F46E5;
}

.category-other {
  background: #F3F4F6;
  color: #6B7280;
}

/* Vendor Rating */
.vendor-rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #F59E0B;
}

.vendor-rating svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* Status Active/Inactive */
.status-active {
  background: #D1FAE5;
  color: #059669;
}

.status-inactive {
  background: #E5E7EB;
  color: #6B7280;
}

/* Breach Amount */
.breach-positive {
  color: var(--error);
  font-weight: 500;
}

.breach-negative {
  color: var(--success);
  font-weight: 500;
}

/* =====================================================
   Company Admin Dashboard Styles
   ===================================================== */

.ca-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.ca-stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.ca-stat-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ca-stat-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

.ca-stat-value {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  font-family: 'Montserrat', sans-serif;
}

.ca-stat-subtitle {
  font-size: 12px;
  color: var(--text-muted);
}

.ca-stat-icon {
  width: 44px;
  height: 44px;
  background: rgba(201, 161, 97, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.ca-credit-usage-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}

.ca-credit-usage-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.ca-credit-usage-header h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.ca-credit-amount {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}

.ca-credit-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 16px;
}

.ca-credit-details {
  margin-bottom: 16px;
}

.ca-credit-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.ca-credit-detail-row:last-child {
  border-bottom: none;
}

.ca-credit-detail-label {
  font-size: 14px;
  color: var(--text-secondary);
}

.ca-credit-detail-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.ca-credit-detail-value.ca-credits-available {
  color: #22c55e;
}

.ca-credit-progress {
  height: 8px;
  background: #E5E7EB;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 12px;
}

.ca-credit-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  border-radius: 4px;
  transition: width 0.3s ease;
}

.ca-credit-note {
  font-size: 12px;
  color: var(--text-muted);
}

.ca-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.ca-members-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.ca-members-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.ca-members-header h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.ca-view-all {
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}

.ca-view-all:hover {
  color: var(--primary);
}

.ca-members-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 0;
}

.ca-members-icon {
  width: 80px;
  height: 80px;
  background: rgba(201, 161, 97, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.ca-members-count {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.ca-members-avatars {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 16px;
  min-height: 48px;
}

.ca-member-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 2px solid transparent;
  position: relative;
}

.ca-member-avatar:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(201, 161, 97, 0.3);
  border-color: var(--primary);
}

.ca-member-avatar-more {
  background: var(--surface);
  color: var(--text-secondary);
  border: 2px solid var(--border);
  font-size: 12px;
}

.ca-member-avatar-more:hover {
  background: var(--border);
  border-color: var(--text-muted);
}

.ca-member-tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--text-primary);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  z-index: 10;
}

.ca-member-avatar:hover .ca-member-tooltip {
  opacity: 1;
  visibility: visible;
}

.ca-no-members {
  color: var(--text-muted);
  font-size: 14px;
  padding: 20px 0;
}

.ca-members-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.ca-usage-summary-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.ca-usage-summary-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.ca-usage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ca-usage-item {
  background: rgba(201, 161, 97, 0.05);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ca-usage-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  font-family: 'Montserrat', sans-serif;
}

.ca-usage-label {
  font-size: 13px;
  color: var(--text-secondary);
}

/* Responsive Company Admin Dashboard */
@media (max-width: 1200px) {
  .ca-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ca-stats-grid {
    grid-template-columns: 1fr;
  }
  
  .ca-bottom-grid {
    grid-template-columns: 1fr;
  }
  
  .ca-usage-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   Team Members Page Styles
   ===================================================== */

.page-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 4px;
}

.members-search-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  max-width: 400px;
  margin-bottom: 24px;
}

.members-search-box svg {
  color: var(--text-muted);
  flex-shrink: 0;
}

.members-search-box input {
  border: none;
  background: transparent;
  font-size: 14px;
  color: var(--text-primary);
  width: 100%;
  outline: none;
}

.members-search-box input::placeholder {
  color: var(--text-muted);
}

.members-table {
  border-collapse: separate;
  border-spacing: 0;
}

.members-table th {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}

.members-table td {
  padding: 16px;
  vertical-align: middle;
}

.member-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.member-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #E8F5E9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: #4CAF50;
  flex-shrink: 0;
}

.member-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.member-name {
  font-weight: 500;
  color: var(--text-primary);
  font-size: 14px;
}

.member-email {
  font-size: 13px;
  color: var(--primary);
}

.tier-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 13px;
  color: var(--text-secondary);
}

.tier-badge svg {
  width: 14px;
  height: 14px;
}

.tier-badge.tier-basic {
  background: #F3F4F6;
  border-color: #D1D5DB;
  color: #6B7280;
}

.tier-badge.tier-gold {
  background: #FEF3C7;
  border-color: #F59E0B;
  color: #B45309;
}

.tier-badge.tier-platinum {
  background: #E5E7EB;
  border-color: #9CA3AF;
  color: #374151;
}

.tier-badge.tier-diamond {
  background: #DBEAFE;
  border-color: #60A5FA;
  color: #1D4ED8;
}

.credit-usage {
  font-size: 14px;
  color: var(--text-secondary);
}

.credit-usage-current {
  font-weight: 500;
  color: var(--text-primary);
}

.status-badge-active {
  display: inline-block;
  padding: 6px 16px;
  background: #4CAF50;
  color: white;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

.status-badge-inactive {
  display: inline-block;
  padding: 6px 16px;
  background: #E5E7EB;
  color: #6B7280;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

.member-actions {
  position: relative;
}

.member-actions-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text-muted);
  border-radius: 4px;
  transition: background 0.2s;
}

.member-actions-btn:hover {
  background: var(--background);
  color: var(--text-primary);
}

.member-actions-menu {
  position: absolute;
  right: 0;
  top: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 150px;
  z-index: 100;
  display: none;
}

.member-actions-menu.show {
  display: block;
}

.member-actions-menu button {
  display: block;
  width: 100%;
  padding: 10px 16px;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-primary);
  transition: background 0.2s;
}

.member-actions-menu button:hover {
  background: var(--background);
}

.member-actions-menu button.danger {
  color: var(--error);
}

.member-actions-menu button.danger:hover {
  background: #FEF2F2;
}

/* Credit Balance Styles */
.credit-balance {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  background: #E8F5E9;
  color: #2E7D32;
}

.credit-balance.credit-low {
  background: #FFEBEE;
  color: #C62828;
}

/* Toast Notifications */
#toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
}

.toast {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 12px;
  background: white;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  animation: toast-slide-in 0.3s ease-out;
  border-left: 4px solid;
}

.toast.toast-success {
  border-left-color: #10B981;
  background: #ECFDF5;
}

.toast.toast-error {
  border-left-color: #EF4444;
  background: #FEF2F2;
}

.toast.toast-info {
  border-left-color: #3B82F6;
  background: #EFF6FF;
}

.toast.toast-warning {
  border-left-color: #F59E0B;
  background: #FFFBEB;
}

.toast-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toast-success .toast-icon {
  color: #10B981;
}

.toast-error .toast-icon {
  color: #EF4444;
}

.toast-info .toast-icon {
  color: #3B82F6;
}

.toast-warning .toast-icon {
  color: #F59E0B;
}

.toast-content {
  flex: 1;
}

.toast-title {
  font-weight: 600;
  font-size: 14px;
  color: #1F2937;
  margin-bottom: 4px;
}

.toast-message {
  font-size: 13px;
  color: #6B7280;
  line-height: 1.4;
}

.toast-close {
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #9CA3AF;
  transition: color 0.2s;
}

.toast-close:hover {
  color: #4B5563;
}

.toast.toast-hide {
  animation: toast-slide-out 0.3s ease-in forwards;
}

@keyframes toast-slide-in {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes toast-slide-out {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* Custom Confirmation Modal */
.confirm-backdrop {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.confirm-modal-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  width: 90%;
  max-width: 420px;
  z-index: 1001;
  animation: confirm-pop-in 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  overflow: hidden;
}

@keyframes confirm-pop-in {
  from {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

.confirm-modal-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 24px 16px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(201, 161, 97, 0.1) 0%, rgba(201, 161, 97, 0.05) 100%);
}

.confirm-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(201, 161, 97, 0.4);
}

.confirm-icon svg {
  stroke: white;
}

.confirm-modal-header h3 {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin: 0;
}

.confirm-modal-body {
  padding: 24px;
  text-align: center;
}

.confirm-modal-body p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.confirm-details {
  margin-top: 16px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(201, 161, 97, 0.15) 0%, rgba(201, 161, 97, 0.08) 100%);
  border-radius: var(--radius-md);
  border: 1px solid rgba(201, 161, 97, 0.3);
}

.confirm-details:empty {
  display: none;
}

.confirm-detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(201, 161, 97, 0.2);
}

.confirm-detail-item:last-child {
  border-bottom: none;
}

.confirm-detail-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.confirm-detail-value {
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 600;
}

.confirm-modal-footer {
  display: flex;
  gap: 12px;
  padding: 20px 24px 24px;
  justify-content: center;
}

.confirm-modal-footer .btn {
  min-width: 120px;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

.confirm-modal-footer .btn-secondary {
  background: var(--background);
  border: 1px solid var(--border);
  color: var(--text-secondary);
}

.confirm-modal-footer .btn-secondary:hover {
  background: var(--border);
  color: var(--text-primary);
}

.confirm-modal-footer .btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border: none;
  color: white;
  box-shadow: 0 4px 12px rgba(201, 161, 97, 0.4);
}

.confirm-modal-footer .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(201, 161, 97, 0.5);
}

/* ========================================
   ENHANCED DESIGN SYSTEM - MODALS & FORMS
   ======================================== */

/* Detail Modal Layout */
.detail-modal-layout {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Tab Navigation */
.detail-tabs {
  display: flex;
  gap: 8px;
  padding: 4px;
  background: var(--background);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.detail-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.detail-tab:hover {
  background: var(--surface);
  color: var(--text-primary);
}

.detail-tab.active {
  background: var(--surface);
  color: var(--primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.detail-tab svg {
  opacity: 0.7;
}

.detail-tab.active svg {
  opacity: 1;
  stroke: var(--primary);
}

.detail-tab-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Credits Summary */
.credits-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.credit-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 20px 16px;
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--border);
  text-align: center;
}

.credit-stat-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
}

.credit-stat-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.credit-stat.credit-negative .credit-stat-value {
  color: var(--error);
}

/* Team List */
.team-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.team-member-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}

.team-member-card:hover {
  border-color: var(--primary-light);
  box-shadow: 0 2px 8px rgba(201, 161, 97, 0.1);
}

.team-member-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 14px;
  flex-shrink: 0;
}

.team-member-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

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

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

.role-badge {
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.role-badge.admin {
  background: rgba(201, 161, 97, 0.15);
  color: var(--primary-dark);
}

/* Tier Badges */
.tier-badge {
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.tier-badge.tier-basic {
  background: rgba(156, 163, 175, 0.15);
  color: #6b7280;
}

.tier-badge.tier-gold {
  background: rgba(217, 164, 65, 0.15);
  color: #b7791f;
}

.tier-badge.tier-platinum {
  background: rgba(156, 163, 175, 0.2);
  color: #4b5563;
}

.tier-badge.tier-diamond {
  background: rgba(59, 130, 246, 0.15);
  color: #2563eb;
}

.team-more-indicator {
  text-align: center;
  padding: 12px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  background: var(--background);
  border-radius: 8px;
}

.add-team-btn {
  margin-top: 12px;
}

.empty-state-text {
  padding: 20px;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  background: var(--background);
  border-radius: 8px;
}

/* Styled Form Sections */
.styled-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-section {
  background: var(--background);
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.form-section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: linear-gradient(180deg, var(--surface) 0%, var(--background) 100%);
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.form-section-header svg {
  flex-shrink: 0;
}

.form-section-content {
  padding: 20px;
}

.section-badge {
  margin-left: auto;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-badge.optional {
  background: rgba(156, 163, 175, 0.15);
  color: var(--text-muted);
}

.required {
  color: var(--error);
}

/* Credit Input */
.credit-input-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--surface);
  transition: border-color 0.2s;
}

.credit-input-wrapper:focus-within {
  border-color: var(--primary);
}

.credit-symbol {
  padding: 10px 12px;
  background: var(--background);
  color: var(--text-muted);
  font-weight: 500;
  border-right: 1px solid var(--border);
}

.credit-input-wrapper input {
  flex: 1;
  border: none;
  padding: 10px 12px;
  font-size: 14px;
}

.credit-input-wrapper input:focus {
  outline: none;
}

.credit-available-hint {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--success);
  margin-left: 0.25rem;
}

/* Enhanced Button Styles */
.btn svg {
  flex-shrink: 0;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(201, 161, 97, 0.05);
}

/* Enhanced Stats Cards */
.stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon.companies {
  background: linear-gradient(135deg, rgba(201, 161, 97, 0.15) 0%, rgba(201, 161, 97, 0.25) 100%);
  color: var(--primary);
}

.stat-icon.users {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.25) 100%);
  color: #3b82f6;
}

.stat-icon.requests {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(34, 197, 94, 0.25) 100%);
  color: #22c55e;
}

.stat-icon.pending {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(249, 115, 22, 0.25) 100%);
  color: #f97316;
}

.stat-value {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 4px;
}

/* Enhanced Table Styles */
.data-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.data-table thead {
  position: sticky;
  top: 0;
  z-index: 10;
}

.data-table th {
  padding: 14px 16px;
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  background: linear-gradient(180deg, var(--background) 0%, rgba(249, 250, 251, 0.95) 100%);
  border-bottom: 2px solid var(--border);
}

.data-table td {
  padding: 16px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  transition: background 0.2s ease;
}

.data-table tbody tr:hover td {
  background: rgba(201, 161, 97, 0.03);
}

.data-table tbody tr:last-child td {
  border-bottom: none;
}

/* User Cell with Avatar */
.user-cell {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-cell-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 13px;
  flex-shrink: 0;
}

.user-cell-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.user-cell-name {
  font-weight: 600;
  color: var(--text-primary);
}

.user-cell-email {
  font-size: 12px;
  color: var(--text-muted);
}

/* Page Header Enhancement */
.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.page-header h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.date-display {
  font-size: 14px;
  color: var(--text-muted);
}

/* Table Card Wrapper */
.table-card {
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.table-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: linear-gradient(180deg, var(--surface) 0%, var(--background) 100%);
  border-bottom: 1px solid var(--border);
}

.table-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.table-actions {
  display: flex;
  gap: 12px;
}

/* Action Buttons in Table */
.action-btn {
  padding: 8px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.action-btn:hover {
  background: var(--background);
  color: var(--text-primary);
}

.action-btn.view:hover {
  color: var(--primary);
}

.action-btn.edit:hover {
  color: #3b82f6;
}

.action-btn.delete:hover {
  color: var(--error);
  background: rgba(220, 53, 69, 0.08);
}

/* Empty State */
.empty-state {
  padding: 60px 20px;
  text-align: center;
}

.empty-state-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  color: var(--text-muted);
  opacity: 0.5;
}

.empty-state-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.empty-state-description {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 300px;
  margin: 0 auto;
}

/* Status Badges */
.status-badge-active {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.status-badge-active::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #16a34a;
  border-radius: 50%;
}

/* Current User Badge */
.current-user-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: rgba(201, 161, 97, 0.12);
  color: var(--primary-dark);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

/* Table Actions Inline */
.table-actions-inline {
  display: flex;
  gap: 4px;
}

/* Enhanced Role Badges */
.role-badge.role-zavi_admin {
  background: linear-gradient(135deg, rgba(201, 161, 97, 0.15) 0%, rgba(201, 161, 97, 0.25) 100%);
  color: var(--primary-dark);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.role-badge.role-company_admin {
  background: rgba(59, 130, 246, 0.15);
  color: #2563eb;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.role-badge.role-member {
  background: rgba(156, 163, 175, 0.15);
  color: #6b7280;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

/* Page Subtitle */
.page-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Table Container Enhancement */
.table-container {
  overflow-x: auto;
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--border);
}

/* Form Inputs Enhancement */
input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(201, 161, 97, 0.15);
}

input,
select,
textarea {
  transition: all 0.2s ease;
}

/* Dropdown Select Enhancement */
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

/* Cards and Sections Enhancements */
.card {
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 24px;
  transition: all 0.2s ease;
}

.card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* Modal Title Enhancement */
.modal-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  margin: 0;
}

/* Company Admin Management Styles */
.existing-admins-list {
  margin-bottom: 16px;
}

.existing-admin-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 8px;
}

.existing-admin-item:last-child {
  margin-bottom: 0;
}

.admin-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.admin-name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 14px;
}

.admin-email {
  color: var(--text-secondary);
  font-size: 13px;
}

.admin-edit-form {
  width: 100%;
}

.admin-edit-form .form-row {
  margin-bottom: 12px;
}

.admin-edit-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-top: 12px;
}

.add-admin-section {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.new-admin-form {
  background: var(--background);
  padding: 16px;
  border-radius: var(--radius-md);
  margin-top: 12px;
  border: 1px solid var(--border);
}

.new-admin-form .form-row {
  margin-bottom: 12px;
}

.new-admin-form .form-group {
  margin-bottom: 12px;
}

.new-admin-form .form-group:last-of-type {
  margin-bottom: 0;
}

.optional-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
}

.edit-admin-btn {
  flex-shrink: 0;
}

.btn-sm {
  padding: 6px 12px;
  font-size: 13px;
}
