/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  background-color: #f0f2f5;
  color: #1a1a2e;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== ADMIN LAYOUT ===== */
.admin-wrapper {
  display: flex;
  min-height: 100vh;
}

/* ===== SIDEBAR ===== */
.sidebar {
  width: 260px;
  background: linear-gradient(180deg, #1e3a5f 0%, #0d1b2a 100%);
  color: #e0e0e0;
  position: fixed;
  height: 100vh;
  overflow-y: auto;
  transition: all 0.3s ease;
  z-index: 1000;
}

/* Collapsed Sidebar State */
.admin-wrapper.sidebar-collapsed .sidebar {
  width: 70px;
}

.admin-wrapper.sidebar-collapsed .sidebar .logo span,
.admin-wrapper.sidebar-collapsed .sidebar .role-badge,
.admin-wrapper.sidebar-collapsed .sidebar .nav-section-title,
.admin-wrapper.sidebar-collapsed .sidebar .nav-link span {
  opacity: 0;
  visibility: hidden;
  width: 0;
  display: none;
}

.admin-wrapper.sidebar-collapsed .sidebar .logo a {
  justify-content: center;
}

.admin-wrapper.sidebar-collapsed .sidebar .nav-link {
  justify-content: center;
  padding: 15px;
}

.admin-wrapper.sidebar-collapsed .sidebar .nav-link i {
  margin: 0;
  font-size: 18px;
}

.admin-wrapper.sidebar-collapsed .main-content {
  margin-left: 70px;
}

/* Sidebar expand on hover when collapsed */
.admin-wrapper.sidebar-collapsed .sidebar:hover {
  width: 260px;
}

.admin-wrapper.sidebar-collapsed .sidebar:hover .logo span,
.admin-wrapper.sidebar-collapsed .sidebar:hover .role-badge,
.admin-wrapper.sidebar-collapsed .sidebar:hover .nav-section-title,
.admin-wrapper.sidebar-collapsed .sidebar:hover .nav-link span {
  opacity: 1;
  visibility: visible;
  width: auto;
  display: inline;
}

.admin-wrapper.sidebar-collapsed .sidebar:hover .logo a {
  justify-content: center;
}

.admin-wrapper.sidebar-collapsed .sidebar:hover .nav-link {
  justify-content: flex-start;
  padding: 12px 20px;
}

.admin-wrapper.sidebar-collapsed .sidebar:hover .nav-link i {
  margin-right: 12px;
  font-size: 16px;
}

.sidebar::-webkit-scrollbar {
  width: 6px;
}

.sidebar::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}

.sidebar-header {
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.logo a {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.logo-img {
  max-width: 160px;
  height: auto;
  transition: all 0.3s ease;
}

.admin-wrapper.sidebar-collapsed .sidebar .logo-img {
  max-width: 40px;
}

.admin-wrapper.sidebar-collapsed .sidebar:hover .logo-img {
  max-width: 160px;
}

.logo i {
  color: #4ecdc4;
}

.role-badge {
  display: inline-block;
  background: rgba(78, 205, 196, 0.2);
  color: #4ecdc4;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 10px;
}

.sidebar-nav {
  padding: 15px 0;
}

.nav-section {
  margin-bottom: 10px;
}

.nav-section-title {
  display: block;
  padding: 10px 20px 5px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
}

.nav-link {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-left-color: #4ecdc4;
}

.nav-link.active {
  background: rgba(78, 205, 196, 0.1);
  color: #4ecdc4;
  border-left-color: #4ecdc4;
}

.nav-link i {
  width: 20px;
  margin-right: 12px;
  font-size: 16px;
}

.nav-link.logout {
  color: #ff6b6b;
}

.nav-link.logout:hover {
  background: rgba(255, 107, 107, 0.1);
  border-left-color: #ff6b6b;
}

/* ===== MAIN CONTENT ===== */
.main-content {
  flex: 1;
  margin-left: 260px;
  min-height: 100vh;
  transition: margin-left 0.3s ease;
}

.content-header {
  background: #fff;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.sidebar-toggle {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #666;
  padding: 5px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 14px;
}

.breadcrumb a {
  color: #3498db;
}

.breadcrumb .current {
  color: #333;
  font-weight: 500;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-actions {
  display: flex;
  gap: 10px;
}

.header-btn {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  transition: all 0.3s ease;
}

.header-btn:hover {
  background: #e0e0e0;
  color: #333;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: #333;
}

.user-info i {
  font-size: 24px;
  color: #3498db;
}

.content-body {
  padding: 30px;
}

/* ===== DASHBOARD STYLES ===== */
.dashboard-header {
  margin-bottom: 30px;
}

.dashboard-header h2 {
  color: #1e3a5f;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 5px;
}

.dashboard-subtitle {
  color: #666;
  font-size: 16px;
}

.section-title {
  color: #1e3a5f;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #4ecdc4;
  display: inline-block;
}

/* KPI Cards */
.kpi-section {
  margin-bottom: 40px;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.kpi-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kpi-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.kpi-icon {
  font-size: 40px;
  width: 70px;
  height: 70px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kpi-card.primary .kpi-icon {
  background: rgba(52, 152, 219, 0.1);
}

.kpi-card.success .kpi-icon {
  background: rgba(46, 204, 113, 0.1);
}

.kpi-card.info .kpi-icon {
  background: rgba(155, 89, 182, 0.1);
}

.kpi-card.warning .kpi-icon {
  background: rgba(241, 196, 15, 0.1);
}

.kpi-content h4 {
  color: #666;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
}

.kpi-value {
  font-size: 28px;
  font-weight: 700;
  color: #1e3a5f;
  margin: 0;
}

.kpi-label {
  font-size: 12px;
  color: #888;
}

.kpi-change {
  font-size: 13px;
  font-weight: 600;
}

.kpi-change.positive {
  color: #27ae60;
}

.kpi-change.negative {
  color: #e74c3c;
}

.kpi-change.neutral {
  color: #95a5a6;
}

/* Stats Grid */
.stats-section {
  margin-bottom: 40px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.stat-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #3498db;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-2px);
}

.stat-card h4 {
  color: #666;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-card p {
  font-size: 32px;
  font-weight: 700;
  color: #1e3a5f;
  margin: 0 0 10px;
}

.stat-breakdown {
  font-size: 12px;
  color: #888;
}

.stat-active {
  color: #27ae60;
}

.stat-inactive {
  color: #e74c3c;
}

.stat-pending {
  color: #f39c12;
}

.stat-warning {
  color: #e67e22;
  font-weight: 600;
}

.stat-label {
  font-size: 11px;
  color: #888;
  display: block;
}

/* Support Section */
.support-section {
  margin-bottom: 40px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.support-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.support-card h4 {
  color: #1e3a5f;
  font-size: 16px;
  margin-bottom: 20px;
}

.support-stats {
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
}

.support-item {
  text-align: center;
}

.support-item .count {
  display: block;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 5px;
}

.support-item .label {
  font-size: 12px;
  color: #888;
  text-transform: uppercase;
}

.support-item.open .count {
  color: #e74c3c;
}

.support-item.responded .count {
  color: #f39c12;
}

.support-item.active .count {
  color: #27ae60;
}

.support-item.expired .count {
  color: #95a5a6;
}

.btn-link {
  display: inline-block;
  color: #3498db;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s ease;
}

.btn-link:hover {
  color: #2980b9;
}

/* Charts Section */
.charts-section {
  margin-bottom: 40px;
}

.charts-grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.charts-grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.chart-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.charts-grid-3col .chart-card {
  padding: 20px;
}

.chart-card.half {
  grid-column: span 1;
}

.chart-card h4 {
  color: #1e3a5f;
  font-size: 16px;
  margin-bottom: 20px;
}

/* Status Section */
.status-section {
  margin-bottom: 40px;
}

.status-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.status-card {
  background: #fff;
  border-radius: 8px;
  padding: 15px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  min-width: 120px;
}

.status-count {
  font-size: 24px;
  font-weight: 700;
  color: #1e3a5f;
}

.status-name {
  font-size: 12px;
  color: #666;
  text-transform: capitalize;
  margin-top: 5px;
}

/* Tables Section */
.tables-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.table-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  overflow-x: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th,
.data-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

.data-table th {
  background: #f8f9fa;
  font-weight: 600;
  color: #1e3a5f;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.data-table td {
  font-size: 14px;
  color: #333;
}

.data-table tr:hover {
  background: #f8f9fa;
}

/* Badges */
.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.badge-success {
  background: rgba(39, 174, 96, 0.1);
  color: #27ae60;
}

.badge-danger {
  background: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
}

.badge-warning {
  background: rgba(243, 156, 18, 0.1);
  color: #f39c12;
}

.badge-info {
  background: rgba(52, 152, 219, 0.1);
  color: #3498db;
}

.tier-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
}

.tier-Starter {
  background: #dfe6e9;
  color: #636e72;
}

.tier-Growth {
  background: #81ecec;
  color: #00695c;
}

.tier-Scale {
  background: #74b9ff;
  color: #0047b3;
}

.tier-Enterprise {
  background: #a29bfe;
  color: #4527a0;
}

.tier-Trial {
  background: #ffeaa7;
  color: #f57f17;
}

/* Transactions Table */
.transactions-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

.transactions-table th,
.transactions-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

.transactions-table th {
  background: #f8f9fa;
  font-weight: 600;
  color: #1e3a5f;
  font-size: 13px;
}

.transactions-table tr:hover {
  background: #f8f9fa;
}

.credit-positive {
  color: #27ae60;
  font-weight: 600;
}

.credit-negative {
  color: #e74c3c;
  font-weight: 600;
}

.type-badge {
  background: #e0e0e0;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
}

.status-badge {
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
}

/* ===== TENANT LIST STYLES ===== */
.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.page-title {
  color: #1e3a5f;
  font-size: 24px;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background: #3498db;
  color: #fff;
}

.btn-primary:hover {
  background: #2980b9;
  transform: translateY(-2px);
}

.btn-success {
  background: #27ae60;
  color: #fff;
}

.btn-success:hover {
  background: #219a52;
}

.btn-warning {
  background: #f39c12;
  color: #fff;
}

.btn-warning:hover {
  background: #d68910;
}

.btn-danger {
  background: #e74c3c;
  color: #fff;
}

.btn-danger:hover {
  background: #c0392b;
}

.btn-sm {
  padding: 6px 12px;
  font-size: 12px;
}

.btn-outline {
  background: transparent;
  border: 2px solid #3498db;
  color: #3498db;
}

.btn-outline:hover {
  background: #3498db;
  color: #fff;
}

/* Filter Section */
.filter-section {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.filter-title {
  font-size: 16px;
  font-weight: 600;
  color: #1e3a5f;
}

.filter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.filter-group {
  display: flex;
  flex-direction: column;
}

.filter-group label {
  font-size: 12px;
  font-weight: 600;
  color: #666;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-group input,
.filter-group select {
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.filter-group input:focus,
.filter-group select:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.filter-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

/* Data Table Container */
.table-container {
  background: #fff;
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.table-header {
  padding: 20px 25px;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.table-title {
  font-size: 16px;
  font-weight: 600;
  color: #1e3a5f;
}

.table-info {
  color: #888;
  font-size: 14px;
}

.table-responsive {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

table th,
table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

table th {
  background: #f8f9fa;
  font-weight: 600;
  color: #1e3a5f;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

table td {
  font-size: 14px;
  color: #333;
}

table tbody tr {
  transition: background 0.3s ease;
}

table tbody tr:hover {
  background: #f8f9fa;
}

.action-buttons {
  display: flex;
  gap: 8px;
  align-items: center;
}

.action-buttons form {
  margin: 0;
}

.action-buttons button,
.action-buttons a {
  vertical-align: middle;
}

.action-buttons .btn {
  margin: 0 !important;
  line-height: 1;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 20px;
  background: #f8f9fa;
}

.pagination a,
.pagination span {
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.pagination a {
  background: #fff;
  color: #3498db;
  border: 1px solid #ddd;
}

.pagination a:hover {
  background: #3498db;
  color: #fff;
  border-color: #3498db;
}

.pagination .current {
  background: #3498db;
  color: #fff;
  border: 1px solid #3498db;
}

.pagination .disabled {
  color: #ccc;
  background: #f0f0f0;
  cursor: not-allowed;
}

/* Export Button */
.export-btn {
  background: #27ae60;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.export-btn:hover {
  background: #219a52;
  transform: translateY(-2px);
}

/* Form Styles */
form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

form input[type="text"],
form input[type="email"],
form input[type="password"],
form input[type="number"],
form input[type="date"],
form select,
form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

form input:focus,
form select:focus,
form textarea:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

form button[type="submit"]:not(.btn) {
  background: #3498db;
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

form button[type="submit"]:not(.btn):hover {
  background: #2980b9;
  transform: translateY(-2px);
}

/* Error Messages */
.error {
  background: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-weight: 500;
}

.success {
  background: rgba(39, 174, 96, 0.1);
  color: #27ae60;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-weight: 500;
}

/* Login Container (keeping backward compatibility) */
.login-container {
  width: 420px;
  margin: 80px auto;
  padding: 40px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.login-container h2 {
  text-align: center;
  color: #1e3a5f;
  margin-bottom: 30px;
}

.login-container input {
  width: 100%;
  padding: 14px;
  margin: 8px 0 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
}

.login-container button {
  width: 100%;
  padding: 14px;
  background: #3498db;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.login-container button:hover {
  background: #2980b9;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .charts-grid-3col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .charts-grid-2col,
  .charts-grid-3col {
    grid-template-columns: 1fr;
  }

  .chart-card.half {
    grid-column: span 1;
  }
}

@media (max-width: 992px) {
  .sidebar {
    width: 70px;
  }

  .sidebar .logo span,
  .sidebar .nav-section-title,
  .sidebar .nav-link span,
  .sidebar .role-badge {
    display: none;
  }

  .sidebar .nav-link {
    justify-content: center;
    padding: 15px;
  }

  .sidebar .nav-link i {
    margin: 0;
    font-size: 18px;
  }

  .main-content {
    margin-left: 70px;
  }

  .tables-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
    width: 260px;
  }

  .admin-wrapper.sidebar-collapsed .sidebar {
    transform: translateX(0);
  }

  .main-content {
    margin-left: 0;
  }

  .kpi-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .content-body {
    padding: 20px;
  }

  .filter-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .support-stats {
    flex-direction: column;
    gap: 15px;
  }

  .page-header {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.hidden {
  display: none;
}