:root {
  --bg-primary: #f8fafc;
  --bg-sidebar: #ffffff;
  --bg-card: #ffffff;
  --border-glass: #e2e8f0;
  --accent-cyan: #0ea5e9;
  --accent-blue: #2563eb;
  --accent-purple: #8b5cf6;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --status-success: #10b981;
  --status-failed: #ef4444;
  --status-warning: #f59e0b;
  --sidebar-width: 260px;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: #1e293b;
}

a {
  color: var(--accent-blue);
  text-decoration: none;
  transition: opacity 0.2s;
}
a:hover {
  opacity: 0.8;
}

/* Layout Elements */
.app-layout {
  display: flex;
  min-height: 100vh;
  width: 100%;
}

/* Sidebar Styling */
.sidebar {
  width: var(--sidebar-width);
  background-color: var(--bg-sidebar);
  border-right: 1px solid var(--border-glass);
  display: flex;
  flex-direction: column;
  padding: 24px;
  flex-shrink: 0;
}

.sidebar .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border-glass);
  padding-bottom: 15px;
}

.sidebar .brand img {
  height: 38px;
  width: 38px;
  object-fit: contain;
  border-radius: 8px;
}

.sidebar .brand div {
  display: flex;
  flex-direction: column;
}

.sidebar .brand h1 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.sidebar .brand span {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-new-item {
  background-color: var(--accent-blue);
  color: #ffffff;
  border: none;
  border-radius: 20px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 30px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
  transition: background-color 0.2s, transform 0.1s;
}

.btn-new-item:hover {
  background-color: #1d4ed8;
  transform: translateY(-1px);
}

.sidebar-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}

.sidebar-menu-item:hover {
  background-color: #f1f5f9;
  color: var(--text-main);
}

.sidebar-menu-item.active {
  background-color: #f1f5f9;
  color: var(--text-main);
  font-weight: 600;
}

.sidebar-menu-item .icon {
  font-size: 16px;
}

.sidebar-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.quota-box {
  background-color: #f8fafc;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid var(--border-glass);
}

.quota-box h4 {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
}

.progress-container {
  width: 100%;
  background-color: #e2e8f0;
  height: 6px;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 8px;
}

.progress-bar {
  height: 100%;
  background-color: var(--accent-blue);
  border-radius: 3px;
  width: 0%;
  transition: width 0.3s;
}

.progress-bar.warning {
  background-color: var(--status-warning);
}

.progress-bar.danger {
  background-color: var(--status-failed);
}

/* Main Content Area */
.main-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  height: 100vh;
}

/* Header Styling */
.top-header {
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-glass);
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.search-wrapper {
  position: relative;
  width: 400px;
}

.search-wrapper input {
  width: 100%;
  background-color: #f1f5f9;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 10px 16px 10px 40px;
  font-size: 14px;
  color: var(--text-main);
  outline: none;
  transition: all 0.2s;
}

.search-wrapper input:focus {
  background-color: #ffffff;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.search-wrapper .search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 14px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-icon {
  font-size: 18px;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s;
}

.header-icon:hover {
  color: var(--text-main);
}

.user-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--accent-blue);
  font-size: 14px;
  border: 2px solid var(--border-glass);
}

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

.user-info span {
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
}

.user-info small {
  font-size: 11px;
  color: var(--text-muted);
}

/* Page Body Container */
.page-body {
  padding: 40px;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

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

.section-title-bar h2 {
  font-size: 18px;
  color: #0f172a;
}

/* Suggested Documents Grid */
.suggested-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.suggested-card {
  background-color: #ffffff;
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.suggested-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.suggested-preview {
  height: 120px;
  background-color: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  border-bottom: 1px solid var(--border-glass);
}

.suggested-info {
  padding: 16px;
}

.suggested-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--accent-blue);
  text-transform: uppercase;
  margin-bottom: 4px;
  display: block;
}

.suggested-name {
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 4px;
}

.suggested-meta {
  font-size: 11px;
  color: var(--text-muted);
}

/* Main Dashboard Cards */
.card {
  background-color: #ffffff;
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

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

.card-header h2 {
  font-size: 16px;
  color: #0f172a;
}

/* Tab Panels */
.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

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

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
}

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

td {
  padding: 14px 16px;
  border-bottom: 1px solid #f1f5f9;
  color: var(--text-main);
  vertical-align: middle;
}

tr:hover td {
  background-color: #f8fafc;
}

/* Buttons */
.btn {
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-primary {
  background-color: var(--accent-blue);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #1d4ed8;
}

.btn-secondary {
  background-color: #f1f5f9;
  color: #334155;
  border: 1px solid #e2e8f0;
}

.btn-secondary:hover {
  background-color: #e2e8f0;
}

.btn-danger {
  background-color: #fee2e2;
  color: #ef4444;
}

.btn-danger:hover {
  background-color: #fca5a5;
  color: #b91c1c;
}

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

.btn-success:hover {
  background-color: #a7f3d0;
  color: #047857;
}

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

/* Badges */
.badge {
  padding: 4px 8px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  display: inline-block;
}

.badge-success {
  background-color: #d1fae5;
  color: var(--status-success);
}

.badge-danger {
  background-color: #fee2e2;
  color: var(--status-failed);
}

.badge-warning {
  background-color: #fef3c7;
  color: var(--status-warning);
}

.badge-admin {
  background-color: #ede9fe;
  color: var(--accent-purple);
}

.badge-bayi {
  background-color: #e0f2fe;
  color: var(--accent-cyan);
}

.badge-customer {
  background-color: #f1f5f9;
  color: var(--text-muted);
}

/* Forms */
.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 6px;
}

.form-group input, .form-group select {
  width: 100%;
  background-color: #ffffff;
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--text-main);
  font-size: 14px;
  outline: none;
  transition: all 0.2s;
}

.form-group input:focus, .form-group select:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

/* Folder Tree View Component */
.tree-node {
  margin-left: 10px;
}

.tree-folder {
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--text-main);
  transition: background-color 0.2s;
}

.tree-folder:hover {
  background-color: #f1f5f9;
}

.tree-file {
  padding: 8px 12px 8px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 6px;
  color: var(--text-muted);
  font-size: 13px;
  transition: background-color 0.2s;
}

.tree-file:hover {
  background-color: #f1f5f9;
  color: var(--text-main);
}

.tree-children {
  border-left: 1px dashed #cbd5e1;
  margin-left: 20px;
  padding-left: 5px;
  display: none;
}

.tree-children.active {
  display: block;
}

/* Modals */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  background-color: #ffffff;
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  width: 100%;
  max-width: 480px;
  padding: 24px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
  transform: scale(1);
}

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

.modal-header h3 {
  font-size: 16px;
  color: #0f172a;
}

.close-btn {
  font-size: 20px;
  cursor: pointer;
  color: var(--text-muted);
}
.close-btn:hover {
  color: var(--text-main);
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
}

/* Logs Container */
.logs-list {
  max-height: 400px;
  overflow-y: auto;
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  background-color: #ffffff;
}

.log-item {
  padding: 12px 16px;
  border-bottom: 1px solid #f1f5f9;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
}
.log-item:last-child {
  border-bottom: none;
}

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

.log-time {
  font-size: 11px;
  color: var(--text-muted);
}

/* Grid layout for cards */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

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

.stat-card {
  background-color: #ffffff;
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.stat-card h3 {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.stat-value {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.progress-desc {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
}

/* Login styling */
.login-page {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #f1f5f9;
  padding: 20px;
}

.login-card {
  width: 100%;
  max-width: 400px;
  background-color: #ffffff;
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.login-logo {
  font-size: 36px;
  margin-bottom: 10px;
}

.login-card h2 {
  font-size: 22px;
  margin-bottom: 6px;
}

.login-card p {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 24px;
}

.error-msg {
  color: var(--status-failed);
  font-size: 12px;
  margin-top: 10px;
  text-align: left;
  display: none;
}

/* Modal Component */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.3);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  width: 90%;
  max-width: 500px;
  border-radius: 16px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: scale(0.95) translateY(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.modal-overlay.active .modal {
  transform: scale(1) translateY(0);
}

.modal-header {
  padding: 16px 24px;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
}

.modal-header .close-btn {
  font-size: 20px;
  font-weight: 600;
  color: #94a3b8;
  cursor: pointer;
  transition: color 0.2s;
}

.modal-header .close-btn:hover {
  color: #64748b;
}

.modal-body {
  padding: 24px;
}

.modal-footer {
  padding: 16px 24px;
  background-color: #f8fafc;
  border-top: 1px solid #f1f5f9;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

/* Floating Bulk Actions Bar */
.bulk-actions-bar {
  position: fixed;
  bottom: -100px; /* Hidden initially */
  left: 50%;
  transform: translateX(-50%);
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  padding: 16px 24px;
  border-radius: 12px;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: bottom 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  color: #fff;
  font-family: 'Inter', sans-serif;
  min-width: 450px;
}

.bulk-actions-bar.active {
  bottom: 30px;
}

.bulk-actions-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 20px;
}

#selectedCountText {
  font-weight: 600;
  font-size: 14px;
}

.bulk-actions-buttons {
  display: flex;
  gap: 10px;
}

/* File Table Styling */
.file-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  margin-bottom: 5px;
  font-size: 13px;
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.file-table th {
  background-color: #f8fafc;
  color: #475569;
  font-weight: 600;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
}

.file-table td {
  padding: 10px 16px;
  border-bottom: 1px solid #f1f5f9;
  color: #334155;
  vertical-align: middle;
}

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

.file-table tr:hover td {
  background-color: #f8fafc;
}

.file-table th input[type="checkbox"],
.file-table td input[type="checkbox"] {
  cursor: pointer;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid #cbd5e1;
  accent-color: var(--primary);
}

/* Folder Section Styling */
.folder-section {
  border: 1px solid #f1f5f9;
  border-radius: 8px;
  margin-bottom: 12px;
  background-color: #fafbfc;
  overflow: hidden;
}

.folder-header {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background-color: #f8fafc;
  border-bottom: 1px solid #f1f5f9;
  cursor: pointer;
  user-select: none;
}

.folder-header input[type="checkbox"] {
  margin-right: 12px;
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
}

.folder-toggle-container {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #1e293b;
  flex: 1;
}

.folder-content {
  padding: 16px;
  display: none;
}

.folder-content.active {
  display: block;
}

/* Mobile Bottom Navigation Bar (Instagram-like) */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 65px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-top: 1px solid var(--border-glass);
  z-index: 1000;
  justify-content: space-around;
  align-items: center;
  padding: 0 5px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
}

.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 500;
  cursor: pointer;
  flex: 1;
  height: 100%;
  text-decoration: none;
  transition: all 0.2s ease;
  gap: 3px;
}

.mobile-nav-item .icon {
  font-size: 18px;
}

.mobile-nav-item.active {
  color: var(--primary);
  font-weight: 600;
}

@media (max-width: 768px) {
  .sidebar {
    display: none !important;
  }
  .main-content {
    margin-left: 0 !important;
    padding: 15px 15px 85px 15px !important;
  }
  .mobile-bottom-nav {
    display: flex !important;
  }
  .top-header {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    margin-bottom: 20px;
    text-align: center;
  }
  .top-header .user-profile {
    justify-content: center;
  }
  /* Scale grids to 1 column */
  .grid-3, .grid-4, .stat-grid, .suggested-grid, .dashboard-grid, .grid-2 {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
  }
  .chart-container, .card, .reseller-group {
    width: 100% !important;
    max-width: 100% !important;
  }
  /* Table responsive card transformations */
  .responsive-card-table, 
  .responsive-card-table thead, 
  .responsive-card-table tbody, 
  .responsive-card-table th, 
  .responsive-card-table td, 
  .responsive-card-table tr { 
    display: block !important; 
    width: 100% !important;
  }
  .responsive-card-table thead {
    display: none !important;
  }
  .responsive-card-table tr {
    background: #ffffff !important;
    border: 1px solid var(--border-glass) !important;
    border-radius: 12px !important;
    margin-bottom: 15px !important;
    padding: 15px !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02) !important;
  }
  .responsive-card-table td {
    border: none !important;
    position: relative !important;
    padding-left: 45% !important;
    text-align: right !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    border-bottom: 1px dashed rgba(0,0,0,0.05) !important;
  }
  .responsive-card-table td:last-child {
    border-bottom: none !important;
    display: flex !important;
    justify-content: flex-end !important;
    gap: 8px !important;
    padding-left: 0 !important;
  }
  .responsive-card-table td:before {
    position: absolute !important;
    left: 15px !important;
    width: 40% !important; 
    padding-right: 10px !important; 
    white-space: nowrap !important;
    text-align: left !important;
    font-weight: 600 !important;
    color: var(--text-muted) !important;
    content: attr(data-label) !important;
  }
  /* Table responsive wrapping fallback */
  .table-responsive {
    width: 100% !important;
    overflow-x: visible !important;
    margin-bottom: 15px;
    border: none !important;
  }
  table {
    min-width: 100% !important;
  }
  /* Fluid modals */
  .modal {
    width: 95% !important;
    margin: 10px auto !important;
    max-height: 90vh;
    overflow-y: auto;
  }
  .modal-body {
    max-height: 60vh;
    overflow-y: auto;
  }
  .search-wrapper input {
    width: 100% !important;
  }
}
