/* Zynox Theme - Modern Dark Theme with Purple Accents */

:root {
  --color-bg-primary: #0a0a0a;
  --color-bg-secondary: #111111;
  --color-bg-tertiary: #1a1a1a;
  --color-text-primary: #ffffff;
  --color-text-secondary: #e5e5e5;
  --color-text-muted: #a3a3a3;
  --color-accent: #7c3aed;
  --color-accent-hover: #6d28d9;
  --color-accent-glow: rgba(124, 58, 237, 0.2);
  --color-border: #262626;
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  line-height: 1.6;
  font-size: 16px;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background-color: var(--color-bg-secondary);
  border-bottom: 1px solid var(--color-border);
  padding: 1rem 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-primary);
  text-decoration: none;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-menu a {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-menu a:hover {
  color: var(--color-accent);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--color-accent);
  color: white;
  box-shadow: 0 0 10px var(--color-accent-glow);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--color-accent-hover);
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.4);
  transform: translateY(-2px);
}

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

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

/* Cards */
.card {
  background-color: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.card:hover {
  border-color: rgba(124, 58, 237, 0.5);
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.1);
}

.card-header {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-text-primary);
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--color-text-secondary);
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  background-color: var(--color-bg-tertiary);
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  color: var(--color-text-primary);
  font-size: 1rem;
  transition: all 0.2s;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-glow);
}

/* Tables */
.table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

.table th,
.table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.table th {
  background-color: var(--color-bg-tertiary);
  font-weight: 600;
  color: var(--color-text-primary);
}

.table tr:hover {
  background-color: var(--color-bg-tertiary);
}

/* Clickable table rows */
.table tbody tr[onclick] {
  cursor: pointer;
  transition: background-color 0.2s;
}

.table tbody tr[onclick]:hover {
  background-color: var(--color-bg-tertiary) !important;
}

/* Text utilities */
.text-center {
  text-align: center;
}

.text-muted {
  color: var(--color-text-muted);
}

.text-accent {
  color: var(--color-accent);
}

.text-success {
  color: var(--color-success);
}

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

/* Button sizes */
.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* List group for sidebar items */
.list-group {
  list-style: none;
}

.list-group-item:hover {
  background-color: var(--color-bg-tertiary);
  color: var(--color-accent);
}

.list-group-item.active {
  background-color: var(--color-bg-tertiary);
  color: var(--color-accent);
}

/* Hidden utility */
.hidden {
  display: none;
}

/* Loading spinner */
.fa-spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Table container */
.table-container {
  overflow-x: auto;
}

/* Alerts */
.alert {
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}

.alert-success {
  background-color: rgba(16, 185, 129, 0.1);
  border: 1px solid var(--color-success);
  color: var(--color-success);
}

.alert-error {
  background-color: rgba(239, 68, 68, 0.1);
  border: 1px solid var(--color-error);
  color: var(--color-error);
}

.alert-warning {
  background-color: rgba(245, 158, 11, 0.1);
  border: 1px solid var(--color-warning);
  color: var(--color-warning);
}

/* Client Area Sidebar */
.client-area {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.sidebar {
  width: 250px;
  flex-shrink: 0;
}

.sidebar-menu {
  list-style: none;
}

.sidebar-menu li {
  margin-bottom: 0.5rem;
}

.sidebar-menu a {
  display: flex;
  align-items: center;
  padding: 0.875rem 1rem;
  color: var(--color-text-secondary);
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.sidebar-menu a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--color-accent);
  transform: scaleY(0);
  transition: transform 0.2s ease;
}

.sidebar-menu a:hover::before,
.sidebar-menu a.active::before {
  transform: scaleY(1);
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
  background-color: var(--color-bg-tertiary);
  color: var(--color-accent);
  padding-left: 1.25rem;
}

.sidebar-menu i {
  width: 24px;
  text-align: center;
  margin-right: 0.75rem;
  font-size: 1.1rem;
}

.content-area {
  flex: 1;
}

/* Page Header */
.page-header {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.page-header h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.page-header p {
  color: var(--color-text-muted);
}

/* Footer */
.footer {
  background-color: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border);
  padding: 2rem 0;
  margin-top: 4rem;
  text-align: center;
  color: var(--color-text-muted);
}

/* Dashboard Stats */
.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-box {
  position: relative;
  background: linear-gradient(135deg, #1a1a1a, #2b2b2b);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
  border-color: var(--color-accent);
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}

.stat-box:hover .stat-highlight {
  opacity: 1;
}

.stat-icon {
  font-size: 2.5rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.stat-box:hover .stat-icon {
  transform: scale(1.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}

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

.stat-highlight {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Empty State */
.no-data {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--color-bg-secondary), var(--color-bg-tertiary));
  border: 1px solid var(--color-border);
  border-radius: 12px;
  margin: 2rem 0;
}

.no-data-icon {
  font-size: 5rem;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
  opacity: 0.5;
}

.no-data h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}

.no-data p {
  color: var(--color-text-muted);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .client-area {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    margin-bottom: 2rem;
  }

  .nav-menu {
    flex-direction: column;
    gap: 1rem;
  }

  .header-content {
    flex-direction: column;
    gap: 1rem;
  }

  .dashboard-stats {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
  }

  .stat-box {
    padding: 1rem;
  }

  .stat-icon {
    font-size: 2rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .no-data {
    padding: 3rem 1.5rem;
  }

  .no-data-icon {
    font-size: 3.5rem;
  }
}

/* Stats grid responsive */
@media (max-width: 640px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* Improved card hover effect */
.card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 0 10px var(--color-accent-glow);
}

/* Stop event bubbling for checkboxes */
.stopEventBubble {
  cursor: pointer;
}

.stopEventBubble:hover {
  transform: scale(1.1);
}

/* Product Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.product-card {
  background-color: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: all 0.2s;
}

.product-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 0 10px var(--color-accent-glow);
}

.product-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.product-price {
  font-size: 1.5rem;
  color: var(--color-accent);
  font-weight: 700;
  margin: 1rem 0;
}

.product-features {
  list-style: none;
  margin: 1rem 0;
}

.product-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-secondary);
}

/* Badge */
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}

.badge-success {
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--color-success);
}

.badge-warning {
  background-color: rgba(245, 158, 11, 0.1);
  color: var(--color-warning);
}

.badge-error {
  background-color: rgba(239, 68, 68, 0.1);
  color: var(--color-error);
}

/* Improving DataTables integration */
.dataTables_wrapper {
  color: var(--color-text-primary);
}

.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_paginate {
  color: var(--color-text-secondary);
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
  color: var(--color-text-secondary) !important;
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  border-radius: 0.375rem;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  color: var(--color-accent) !important;
  background: var(--color-bg-tertiary);
  border-color: var(--color-accent);
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
  color: white !important;
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.dataTables_wrapper .dataTables_filter input {
  background-color: var(--color-bg-tertiary);
  border: 1px solid var(--color-border);
  color: var(--color-text-primary);
  padding: 0.5rem;
  border-radius: 0.375rem;
  margin-left: 0.5rem;
}

.dataTables_wrapper .dataTables_length select {
  background-color: var(--color-bg-tertiary);
  border: 1px solid var(--color-border);
  color: var(--color-text-primary);
  padding: 0.5rem;
  border-radius: 0.375rem;
  margin: 0 0.5rem;
}

/* Added new topbar styles */
.zynox-topbar {
  background: #111;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 40px;
  border-bottom: 1px solid #222;
}

.topbar-brand {
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 1px;
  color: #fff;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.notifications-btn {
  position: relative;
  color: #5bb5ff;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s;
}

.notifications-btn:hover {
  transform: scale(1.1);
}

.notification-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #ef4444;
  color: white;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 10px;
  font-weight: 600;
}

.logout-btn {
  color: #fff;
  text-decoration: none;
  padding: 6px 14px;
  background: #222;
  border-radius: 6px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.logout-btn:hover {
  background: #5bb5ff;
  color: #000;
  transform: translateY(-2px);
}

/* Added new navbar styles */
.zynox-navbar {
  background: #181818;
  border-bottom: 1px solid #222;
  padding: 0;
}

.navbar-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 0;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin: 0;
}

.nav-links a {
  display: block;
  color: #ccc;
  text-decoration: none;
  font-weight: 500;
  padding: 16px 24px;
  transition: all 0.3s;
  border-bottom: 3px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  color: #5bb5ff;
  background: rgba(91, 181, 255, 0.05);
  border-bottom-color: #5bb5ff;
}

/* Added user menu dropdown styles */
.user-menu {
  position: relative;
}

.user-btn {
  background: none;
  color: #fff;
  border: 1px solid #333;
  cursor: pointer;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}

.user-btn:hover {
  border-color: #5bb5ff;
  color: #5bb5ff;
}

.user-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #202020;
  border: 1px solid #333;
  border-radius: 8px;
  min-width: 250px;
  display: none;
  flex-direction: column;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.user-dropdown.show {
  display: flex;
}

.user-dropdown a {
  color: #ddd;
  padding: 12px 20px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.2s;
}

.user-dropdown a:hover {
  background: #2a2a2a;
  color: #5bb5ff;
}

.user-dropdown a i {
  width: 20px;
  text-align: center;
}

.dropdown-divider {
  height: 1px;
  background: #333;
  margin: 8px 0;
}

/* Added client area layout styles */
.main-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px 40px;
}

.client-area-layout {
  display: flex;
  gap: 30px;
}

.client-sidebar {
  width: 280px;
  flex-shrink: 0;
}

.client-content {
  flex: 1;
  min-width: 0;
}

/* Added sidebar card styles */
.sidebar-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s;
}

.sidebar-card:hover {
  border-color: rgba(91, 181, 255, 0.3);
  box-shadow: 0 4px 20px rgba(91, 181, 255, 0.1);
}

.card-header-sidebar {
  background: #222;
  padding: 12px 16px;
  font-weight: 600;
  color: #fff;
  border-bottom: 1px solid #2a2a2a;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-card-body {
  padding: 16px;
}

/* Added profile card styles */
.profile-card .profile-content {
  padding: 20px;
  text-align: center;
}

.profile-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #5bb5ff, #7c3aed);
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(91, 181, 255, 0.3);
}

.profile-info {
  color: #ccc;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.profile-name {
  color: #fff;
  font-weight: 600;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-success {
  background: #10b981;
  color: white;
}

.btn-success:hover {
  background: #059669;
}

/* Added shortcuts styles */
.sidebar-shortcuts {
  padding: 8px;
}

.shortcut-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  color: #ccc;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s;
  margin-bottom: 4px;
}

.shortcut-link:hover {
  background: #222;
  color: #5bb5ff;
}

.shortcut-link i {
  width: 20px;
  text-align: center;
}

/* Added contact item styles */
.contact-item {
  padding: 10px;
  border-bottom: 1px solid #2a2a2a;
  color: #ccc;
  display: flex;
  align-items: center;
  gap: 10px;
}

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

/* Updated dashboard stats for new design */
.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.stat-box {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.stat-box:hover {
  transform: translateY(-5px);
  border-color: rgba(91, 181, 255, 0.5);
  box-shadow: 0 10px 30px rgba(91, 181, 255, 0.2);
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  transition: transform 0.3s;
}

.stat-box:hover .stat-icon {
  transform: scale(1.1);
}

.stat-services .stat-icon {
  color: #3b82f6;
}
.stat-domains .stat-icon {
  color: #10b981;
}
.stat-tickets .stat-icon {
  color: #f59e0b;
}
.stat-invoices .stat-icon {
  color: #ef4444;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.stat-label {
  color: #999;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.stat-underline {
  height: 3px;
  width: 0;
  margin: 12px auto 0;
  transition: width 0.3s;
}

.stat-box:hover .stat-underline {
  width: 60%;
}

.stat-services .stat-underline {
  background: #3b82f6;
}
.stat-domains .stat-underline {
  background: #10b981;
}
.stat-tickets .stat-underline {
  background: #f59e0b;
}
.stat-invoices .stat-underline {
  background: #ef4444;
}

/* Added knowledge base search card styles */
.kb-search-card {
  background: linear-gradient(135deg, #1a1a1a, #252525);
  border: 1px solid #2a2a2a;
  padding: 20px;
  margin-bottom: 30px;
}

.search-input-wrapper {
  position: relative;
}

.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  font-size: 1.1rem;
}

/* Fixed incomplete search-input rule and added remaining styles */
.search-input {
  padding-left: 48px !important;
  background: #111 !important;
  border: 1px solid #333 !important;
  color: #fff !important;
  font-size: 1rem !important;
  border-radius: 8px !important;
  transition: all 0.3s !important;
}

.search-input:focus {
  border-color: #5bb5ff !important;
  box-shadow: 0 0 0 3px rgba(91, 181, 255, 0.1) !important;
}

/* Card header main styles */
.card-header-main {
  background: #222;
  padding: 16px 20px;
  font-weight: 600;
  color: #fff;
  border-bottom: 1px solid #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: -1.5rem -1.5rem 1.5rem -1.5rem;
  border-radius: 0.75rem 0.75rem 0 0;
}

.card-body {
  padding: 0;
}

/* Float utilities */
.float-right {
  float: right;
}

/* Button color variants */
.btn-warning {
  background: #f59e0b;
  color: white;
}

.btn-warning:hover {
  background: #d97706;
}

.btn-info {
  background: #3b82f6;
  color: white;
}

.btn-info:hover {
  background: #2563eb;
}

/* Breadcrumb styles */
.breadcrumb {
  color: #999;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: #5bb5ff;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* Announcement item styles */
.announcement-item {
  padding: 16px 0;
  border-bottom: 1px solid #2a2a2a;
}

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

.announcement-item h4 {
  margin: 0 0 8px 0;
}

.announcement-item h4 a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

.announcement-item h4 a:hover {
  color: #5bb5ff;
}

/* Text right utility */
.text-right {
  text-align: right;
}

/* Responsive adjustments for new layout */
@media (max-width: 1024px) {
  .client-area-layout {
    flex-direction: column;
  }

  .client-sidebar {
    width: 100%;
  }

  .dashboard-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .navbar-container {
    padding: 0 20px;
  }

  .zynox-topbar {
    padding: 12px 20px;
  }
}

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

  .nav-links {
    flex-direction: column;
    width: 100%;
  }

  .navbar-container {
    flex-direction: column;
    align-items: stretch;
  }

  .user-menu {
    width: 100%;
    margin-top: 10px;
  }

  .user-btn {
    width: 100%;
    justify-content: center;
  }

  .topbar-right {
    gap: 10px;
  }

  .topbar-brand {
    font-size: 1.2rem;
  }
}
