@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --background: #070811;
  --foreground: #FFFFFF;
  --glass-bg: rgba(15, 18, 32, 0.65);
  --glass-border: rgba(255, 255, 255, 0.08);
  --accent-gradient: linear-gradient(135deg, #5B5CFF 0%, #8B5CF6 100%);
  --accent-shadow: rgba(139, 92, 246, 0.2);
  --glow-icon-bg: rgba(91, 92, 255, 0.1);
  --glow-icon-border: rgba(91, 92, 255, 0.2);
  --danger-bg: rgba(239, 68, 68, 0.1);
  --danger-border: rgba(239, 68, 68, 0.2);
  --success-bg: rgba(16, 185, 129, 0.1);
  --success-border: rgba(16, 185, 129, 0.2);
}

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

body {
  width: 100%;
  min-height: 100vh;
  background-image: url("/images/anime-wallpaper.png") !important;
  background-color: rgba(5, 8, 20, 0.72) !important;
  background-blend-mode: multiply !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-attachment: fixed !important;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--foreground);
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

body > * {
  position: relative;
  z-index: 1;
}

/* Glassmorphic card base style */
.glass-panel {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 22px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-panel:hover {
  border-color: rgba(139, 92, 246, 0.2);
}

/* Layout */
.app-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
}

.header {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 1rem;
}

.main-grid {
  flex: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2rem;
}

@media (max-width: 768px) {
  .main-grid {
    grid-template-columns: 1fr;
    padding: 1rem;
  }
}

/* Sidebar navigation */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem;
  height: fit-content;
}

.brand-section {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.brand-title {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #fff;
}

.brand-subtitle {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #B9BED1;
  opacity: 0.6;
}

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

.nav-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.25rem;
  border-radius: 12px;
  background: transparent;
  border: 1px solid transparent;
  color: #B9BED1;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  text-align: left;
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.nav-btn.active {
  background: var(--accent-gradient);
  box-shadow: 0 4px 15px var(--accent-shadow);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-btn.active:hover {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.3);
}

.nav-btn.discord-btn {
  background: #5865F2;
  color: #fff;
}
.nav-btn.discord-btn:hover {
  background: #4752C4;
}

.nav-btn.donate-btn {
  background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
  color: #000;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.15);
}
.nav-btn.donate-btn:hover {
  background: linear-gradient(135deg, #FCD34D 0%, #F59E0B 100%);
  transform: translateY(-1px);
}

/* Main Content elements */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: #B9BED1;
}

.breadcrumb-link {
  color: #B9BED1;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}

.breadcrumb-link:hover {
  color: #fff;
}

.breadcrumb-current {
  color: #fff;
  font-weight: 600;
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.folder-card {
  padding: 1.5rem;
  cursor: pointer;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.folder-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 96px;
  height: 96px;
  background: rgba(91, 92, 255, 0.05);
  border-radius: 50%;
  filter: blur(20px);
  transition: background-color 0.3s;
}

.folder-card:hover {
  transform: translateY(-3px) scale(1.01);
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.folder-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--glow-icon-bg);
  border: 1px solid var(--glow-icon-border);
  box-shadow: 0 0 12px rgba(91, 92, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5B5CFF;
  font-size: 1.25rem;
}

.folder-info {
  margin-top: 1.5rem;
}

.folder-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.folder-count {
  font-size: 0.75rem;
  color: #B9BED1;
  opacity: 0.7;
}

.badge-locked {
  font-size: 0.65rem;
  background: rgba(139, 92, 246, 0.15);
  color: #C084FC;
  padding: 0.2rem 0.5rem;
  border-radius: 99px;
  border: 1px solid rgba(139, 92, 246, 0.3);
  font-weight: 600;
}

/* File explorer */
.folder-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: var(--glass-bg);
  border-radius: 16px !important;
}

@media (max-width: 576px) {
  .folder-header-bar {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}

.folder-title-section h2 {
  font-size: 1.15rem;
  font-weight: 700;
}
.folder-title-section p {
  font-size: 0.75rem;
  color: #B9BED1;
  opacity: 0.7;
}

.actions-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sort-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #B9BED1;
  letter-spacing: 0.05em;
}

/* Inputs and Forms */
input[type="text"],
input[type="password"],
input[type="number"],
select,
textarea {
  background: rgba(255, 255, 255, 0.03) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border) !important;
  border-radius: 12px !important;
  color: #FFFFFF !important;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  outline: none !important;
  transition: all 0.25s ease;
  width: 100%;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
  border-color: #8B5CF6 !important;
  background: rgba(255, 255, 255, 0.05) !important;
  box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.15);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent-gradient);
  color: #fff;
  box-shadow: 0 4px 15px var(--accent-shadow);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.35);
}
.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: #B9BED1;
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.btn-danger {
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #EF4444;
}
.btn-danger:hover {
  background: rgba(239, 68, 68, 0.3);
  color: #fff;
}

/* File list grid inside folder */
.files-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.file-card {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.file-details {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  overflow: hidden;
}

.file-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5B5CFF;
  flex-shrink: 0;
}

.file-meta {
  overflow: hidden;
}

.file-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.file-size {
  font-size: 0.7rem;
  color: #B9BED1;
  opacity: 0.6;
  margin-top: 0.15rem;
}

.file-actions {
  display: flex;
  gap: 0.35rem;
  flex-shrink: 0;
}

.action-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  color: #B9BED1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.action-btn:hover {
  background: rgba(91, 92, 255, 0.15);
  color: #fff;
  border-color: rgba(91, 92, 255, 0.3);
}

/* Modals overlays */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 4, 10, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 100;
}

.modal-content {
  width: 100%;
  max-width: 440px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}

.modal-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #A78BFA;
  font-size: 1.5rem;
}

.modal-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
}
.modal-header p {
  font-size: 0.75rem;
  color: #B9BED1;
  opacity: 0.7;
  margin-top: 0.25rem;
}

.modal-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-actions {
  display: flex;
  gap: 0.75rem;
  width: 100%;
}

.modal-actions button {
  flex: 1;
}

/* Preview Modal size */
.preview-modal-content {
  max-width: 800px;
  width: 100%;
  padding: 0;
  overflow: hidden;
  align-items: stretch;
  text-align: left;
}

.preview-header {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.preview-body {
  padding: 1.5rem;
  background: #080b15;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 60vh;
  overflow: auto;
}

.preview-body img,
.preview-body video {
  max-width: 100%;
  max-height: 50vh;
  object-fit: contain;
  border-radius: 8px;
}

.preview-body iframe {
  width: 100%;
  height: 50vh;
  border: none;
  border-radius: 8px;
}

/* Stats Widgets */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.5rem;
}

.stats-card {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stats-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.stats-info span {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #B9BED1;
  letter-spacing: 0.05em;
}

.stats-info h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  margin-top: 0.25rem;
}

.stats-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #B9BED1;
}

.stats-card.blue-widget { border-color: rgba(59, 130, 246, 0.15); }
.stats-card.blue-widget .stats-icon-box { background: rgba(59, 130, 246, 0.1); border-color: rgba(59, 130, 246, 0.2); color: #3B82F6; }

.stats-card.emerald-widget { border-color: rgba(16, 185, 129, 0.15); }
.stats-card.emerald-widget .stats-icon-box { background: rgba(16, 185, 129, 0.1); border-color: rgba(16, 185, 129, 0.2); color: #10B981; }

.stats-card.amber-widget { border-color: rgba(245, 158, 11, 0.15); }
.stats-card.amber-widget .stats-icon-box { background: rgba(245, 158, 11, 0.1); border-color: rgba(245, 158, 11, 0.2); color: #F59E0B; }

.stats-card.indigo-widget { border-color: rgba(99, 102, 241, 0.15); }
.stats-card.indigo-widget .stats-icon-box { background: rgba(99, 102, 241, 0.1); border-color: rgba(99, 102, 241, 0.2); color: #6366F1; }

.stats-card.purple-widget { border-color: rgba(139, 92, 246, 0.15); }
.stats-card.purple-widget .stats-icon-box { background: rgba(139, 92, 246, 0.1); border-color: rgba(139, 92, 246, 0.2); color: #8B5CF6; }

/* Table layouts */
.table-panel {
  padding: 1.5rem;
}

.table-panel h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
}

table {
  border-collapse: separate !important;
  border-spacing: 0 8px !important;
  width: 100%;
}

tr {
  background: rgba(255, 255, 255, 0.01);
  transition: background 0.2s;
}

tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

th {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: #B9BED1;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.75rem 1rem;
  text-align: left;
}

td {
  padding: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.85rem;
}

td:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.04);
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

td:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.04);
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

/* Upload zone styles */
.upload-zone {
  border: 2px dashed rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.01);
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.upload-zone:hover,
.upload-zone.highlight {
  border-color: #5B5CFF;
  background: rgba(91, 92, 255, 0.04);
}

.upload-icon {
  font-size: 2.5rem;
  color: #B9BED1;
  opacity: 0.5;
  margin-bottom: 1rem;
  transition: transform 0.2s;
}

.upload-zone:hover .upload-icon {
  color: #5B5CFF;
  transform: translateY(-2px);
  opacity: 1;
}

.upload-queue-container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.queue-item {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.queue-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 0.8rem;
}

.queue-meta h5 {
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 250px;
}

.queue-meta span {
  font-size: 0.7rem;
  color: #B9BED1;
  opacity: 0.6;
}

.progress-bar-container {
  width: 100%;
  height: 6px;
  background: #080b15;
  border-radius: 9999px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: var(--accent-gradient);
  width: 0%;
  transition: width 0.3s ease;
}

.progress-stats {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: #B9BED1;
  opacity: 0.7;
}

/* Toast alert notification */
.toast-alert {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  z-index: 1000;
  animation: slide-in 0.3s ease forwards;
}

.toast-alert.success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #34D399;
}

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

@keyframes slide-in {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Footer Section */
.footer {
  max-width: 1200px;
  width: 100%;
  margin: 2rem auto 1rem auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-gif img {
  max-height: 80px;
  border-radius: 8px;
  animation: floatLogo 3s ease-in-out infinite, neonGlow 2s ease-in-out infinite alternate;
}

@keyframes floatLogo {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes neonGlow {
  0% {
    filter: drop-shadow(0 0 2px rgba(91, 92, 255, 0.3)) drop-shadow(0 0 5px rgba(91, 92, 255, 0.2)) brightness(0.95);
  }
  100% {
    filter: drop-shadow(0 0 6px rgba(139, 92, 246, 0.8)) drop-shadow(0 0 12px rgba(91, 92, 255, 0.6)) brightness(1.05);
  }
}

.footer-copyright {
  font-size: 0.75rem;
  color: #B9BED1;
  opacity: 0.6;
}

/* Scrollbars */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: rgba(22, 22, 35, 0.2);
}
::-webkit-scrollbar-thumb {
  background: rgba(139, 92, 246, 0.3);
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(139, 92, 246, 0.6);
}

/* --- LIGHT THEME VARIABLES & OVERRIDES --- */
body.light-theme {
  --background: #F3F4F6;
  --foreground: #1F2937;
  --glass-bg: rgba(255, 255, 255, 0.78);
  --glass-border: rgba(0, 0, 0, 0.08);
  --glow-icon-bg: rgba(91, 92, 255, 0.06);
  --glow-icon-border: rgba(91, 92, 255, 0.15);
  --success-bg: rgba(16, 185, 129, 0.08);
  --success-border: rgba(16, 185, 129, 0.15);
  background-color: rgba(243, 244, 246, 0.85) !important;
  background-blend-mode: screen !important;
}

body.light-theme h1,
body.light-theme h2,
body.light-theme h3,
body.light-theme h4,
body.light-theme h5,
body.light-theme h6,
body.light-theme th,
body.light-theme td a,
body.light-theme .file-name {
  color: #1F2937 !important;
}

body.light-theme p,
body.light-theme span,
body.light-theme td,
body.light-theme label,
body.light-theme .file-size,
body.light-theme .folder-count {
  color: #4B5563 !important;
}

body.light-theme input,
body.light-theme select,
body.light-theme textarea {
  background: rgba(0, 0, 0, 0.03) !important;
  border-color: rgba(0, 0, 0, 0.1) !important;
  color: #1F2937 !important;
}

body.light-theme input:focus {
  border-color: #5B5CFF !important;
}

body.light-theme .glass-panel {
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08) !important;
}

/* Theme Toggle styles */
.theme-toggle {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 1000;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.theme-toggle:hover {
  transform: scale(1.1);
  border-color: #5B5CFF;
}

/* Watermark styles */
.watermark {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  opacity: 0.25;
  font-size: 0.85rem;
  font-weight: 800;
  pointer-events: none;
  z-index: 9999;
  color: var(--foreground);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Tab content visibility */
.tab-content {
  display: none !important;
}
.tab-content.active {
  display: block !important;
}

