/* /home/lodiko/lodikocom/src/styles/custom.css */
:root {
  --primary-yellow: #FFC107;
  --primary-blue: #2196F3;
  --primary-red: #CE1126;
  --primary-white: #FFFFFF;
  --background-dark: #121212;
  --background-darker: #0A0A0A;
  --shadow-dark: rgba(0, 0, 0, 0.5);
  --shadow-light: rgba(255, 255, 255, 0.08);
  --gradient-primary: linear-gradient(45deg, #FFC107, #CE1126, #2196F3);
  --create-button-glow: rgba(255, 193, 7, 0.4);
  --divider-3d: linear-gradient(to bottom, #2A2A2A 0%, #4A4A4A 50%, #2A2A2A 100%);
  --create-button-bg: radial-gradient(circle at center, #FFD700 0%, #FFA500 80%, #FF4500 100%);
  --form-3d: linear-gradient(to bottom, #1A1A1A 0%, #2A2A2A 50%, #1A1A1A 100%);
}

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

body {
  background-color: var(--background-dark);
  color: var(--primary-white);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  transform: none !important;
}

/* Navigation Bar (Top for Navigation.jsx) */
.nav-bar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(18, 18, 18, 0.3);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  padding: 1px 8px; /* Reduced padding */
  z-index: 1001;
  box-shadow: 0 2px 6px var(--shadow-dark);
  border-bottom: 1px solid var(--shadow-light);
  transition: transform 0.3s ease;
  height: 28px; /* Reduced height */
}

.nav-container {
  display: flex;
  gap: 4px; /* Reduced gap */
  align-items: center;
  width: 100%;
  max-width: 1000px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 0 4px; /* Reduced padding */
}

.nav-container::-webkit-scrollbar {
  display: none;
}

.nav-link {
  color: var(--primary-white);
  text-decoration: none;
  font-size: 0.65rem; /* Already set */
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 2px; /* Reduced gap */
  padding: 2px 4px; /* Reduced padding */
  border-radius: 4px; /* Reduced radius */
  transition: color 0.3s ease, transform 0.2s ease, background 0.3s ease;
  white-space: nowrap;
  position: relative;
  text-align: center;
}

.nav-link:hover {
  color: var(--primary-yellow);
  transform: scale(1.05);
  background: rgba(18, 18, 18, 0.5);
  backdrop-filter: blur(4px);
}

.nav-link.active {
  color: var(--primary-yellow);
  font-weight: 700;
  background: rgba(255, 193, 7, 0.4);
  padding: 2px 4px;
  border-radius: 4px;
  transform: scale(1);
}

.nav-link .nav-icon {
  font-size: 0.6rem; /* Further reduced font-size */
}

.nav-link .nav-label {
  font-size: 0.5rem; /* Already set */
}

.nav-bar .nav-menu {
  display: none;
  font-size: 0.8rem; /* Reduced font-size */
  color: var(--primary-white);
  cursor: pointer;
  padding: 1px; /* Reduced padding */
  border-radius: 4px;
  transition: color 0.3s ease;
}

.nav-bar .nav-menu:hover {
  color: var(--primary-yellow);
}

.nav-bar .mobile-menu {
  display: none;
  position: fixed;
  top: 28px; /* Adjusted for new height */
  left: 0;
  width: 100%;
  background: rgba(18, 18, 18, 0.3);
  backdrop-filter: blur(8px);
  flex-direction: column;
  padding: 6px; /* Reduced padding */
  box-shadow: 0 6px 16px var(--shadow-dark);
  z-index: 999;
  animation: slideDown 0.3s ease-in-out;
}

.nav-bar .mobile-menu.active {
  display: flex;
}

.nav-bar .mobile-menu a {
  padding: 4px 6px; /* Reduced padding */
  font-size: 0.65rem; /* Reduced font-size */
  color: var(--primary-white);
  text-align: center;
  border-bottom: 1px solid var(--shadow-light);
  transition: color 0.3s ease, background 0.3s ease;
}

.nav-bar .mobile-menu a:hover {
  color: var(--primary-yellow);
  background: rgba(18, 18, 18, 0.5);
  backdrop-filter: blur(4px);
}

@media (max-width: 767px) {
  .nav-bar {
    padding: 1px 8px; /* Consistent with desktop */
    height: 28px; /* Consistent with desktop */
  }

  .nav-bar .nav-links {
    display: none;
  }

  .nav-bar .nav-menu {
    display: block;
  }

  .nav-container {
    gap: 3px; /* Reduced gap */
    padding: 0 3px; /* Reduced padding */
  }

  .nav-link {
    font-size: 0.65rem;
    padding: 2px 4px;
    text-align: center;
  }

  .nav-link.active {
    background: rgba(255, 193, 7, 0.4);
    padding: 2px 4px;
    border-radius: 4px;
    text-align: center;
  }

  .nav-bar .mobile-menu {
    top: 28px;
    padding: 4px; /* Reduced padding */
  }

  .nav-bar .mobile-menu a {
    padding: 3px 4px; /* Reduced padding */
    font-size: 0.6rem; /* Reduced font-size */
  }
}

/* Bottom Navigation Bar (Home.jsx) */
.bottom-nav-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(18, 18, 18, 0.1);
  display: grid;
  grid-template-columns: repeat(7, minmax(30px, 1fr));
  justify-items: center;
  align-items: center;
  padding: 4px 2px;
  z-index: 1000;
  border-top: 1px solid var(--shadow-light);
  box-shadow: 0 -2px 6px var(--shadow-dark);
  border-radius: 10px 10px 0 0;
  height: 50px;
  transition: transform 0.3s ease;
}

.bottom-nav-bar.reset-layout {
  transform: none !important;
}

.nav-icon {
  color: var(--primary-white);
  font-size: 1.0rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2px;
  border-radius: 50%;
  transition: color 0.3s ease, transform 0.2s ease, background 0.3s ease;
  width: 30px;
  height: 30px;
  text-align: center;
  box-sizing: content-box;
}

.nav-icon:hover {
  color: var(--primary-yellow);
  transform: translateY(-2px) scale(1.1);
  background: rgba(255, 193, 7, 0.2);
}

.nav-icon.active {
  color: var(--primary-yellow);
  background: rgba(255, 193, 7, 0.2);
  transform: scale(1.1);
}

.nav-label {
  font-size: 0.5rem;
  margin-top: 2px;
  font-weight: 500;
  text-shadow: 0 1px 2px var(--shadow-dark);
}

/* Refine create button for mobile with 3D sun effect */
.bottom-nav-bar .create-icon {
  grid-column: 4;
  margin: 0 auto;
  width: 40px;
  height: 40px;
}

.create-icon {
  background: var(--create-button-bg);
  color: var(--background-darker) !important;
  border: none;
  border-radius: 50%;
  padding: 0;
  box-shadow: 
    0 4px 10px rgba(255, 215, 0, 0.3),
    0 0 15px rgba(255, 165, 0, 0.5),
    inset 0 2px 4px rgba(255, 255, 255, 0.2),
    inset 0 -2px 4px rgba(255, 69, 0, 0.2);
  transform: scale(1.0) translateZ(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.0rem;
  text-align: center;
  line-height: 40px;
  content: "+";
}

.create-icon:hover {
  transform: scale(1.1) translateZ(5px);
  box-shadow: 
    0 6px 15px rgba(255, 215, 0, 0.4),
    0 0 20px rgba(255, 165, 0, 0.6),
    inset 0 3px 6px rgba(255, 255, 255, 0.3),
    inset 0 -3px 6px rgba(255, 69, 0, 0.3);
  background: radial-gradient(circle at center, #FFD700 0%, #FFA500 80%, #FF4500 100%);
}

.create-icon.active {
  background: radial-gradient(circle at center, #FFD700 0%, #FFA500 80%, #FF4500 100%);
  color: var(--background-darker) !important;
  transform: scale(1.05) translateZ(3px);
}

/* Search Bar */
.search-bar {
  position: fixed;
  top: 50px;
  left: 10px;
  transform: none;
  background: rgba(18, 18, 18, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 4px 8px;
  display: flex;
  align-items: center;
  z-index: 900;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  width: 25%;
  max-width: 200px;
  height: 32px;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.search-bar:hover {
  box-shadow: 0 3px 8px rgba(255, 193, 7, 0.4);
  transform: scale(1.02);
}

.search-bar:focus-within {
  box-shadow: 0 3px 10px rgba(255, 193, 7, 0.5);
  transform: scale(1.02);
  z-index: 1300;
}

.search-input {
  background: transparent;
  border: none;
  color: var(--primary-white);
  font-size: 10px;
  width: 100%;
  max-width: 100%;
  outline: none;
  font-weight: 400;
  transition: all 0.3s ease;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  height: 100%;
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.search-input:focus {
  border-bottom: 1px solid var(--primary-yellow);
}

/* Search Dropdown */
.search-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(18, 18, 18, 0.3);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 1300;
  margin-top: 6px;
  max-height: 320px;
  overflow-y: auto;
  animation: slideDown 0.3s ease-in-out;
}

.search-dropdown-item {
  display: flex;
  align-items: center;
  padding: 6px 10px;
  color: var(--primary-white);
  font-size: 8px;
  font-weight: 200;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.search-dropdown-item:hover {
  background: rgba(255, 193, 7, 0.3);
  color: var(--primary-yellow);
}

.search-dropdown-item.recent {
  border-bottom: 1px solid var(--shadow-light);
}

.search-dropdown-item.suggested {
  color: rgba(255, 255, 255, 0.8);
}

.search-dropdown-item .search-item-icon {
  margin-right: 5px;
  font-size: 9px;
  color: var(--primary-yellow);
}

.search-dropdown-item .search-item-text {
  flex: 1;
}

@media (max-width: 767px) {
  .search-bar {
    width: 30%;
    max-width: 130px;
    padding: 2px 5px;
    top: 46px;
    height: 26px;
  }

  .search-icon {
    font-size: 9px;
    margin-right: 3px;
  }

  .search-input {
    font-size: 9px;
  }

  .video-tabs {
    top: 46px;
    right: 8px;
    height: 26px;
  }

  .tab-button {
    padding: 3px 8px; /* Increased padding */
    font-size: 0.75rem; /* Increased font-size */
  }

  .nav-bar {
    height: 28px;
  }
}

/* Video Tabs (For You, Following, Friends) */
.video-tabs {
  position: fixed;
  top: 50px;
  right: 10px;
  width: auto;
  background: transparent;
  display: flex;
  justify-content: flex-end;
  gap: 6px;
  padding: 4px 0;
  z-index: 900;
  visibility: visible;
  box-shadow: none;
  height: 32px;
}

.tab-button {
  background: transparent;
  border: none;
  color: var(--primary-white);
  font-size: 1.0rem; /* Increased font-size */
  font-weight: 600;
  padding: 6px 12px; /* Increased padding */
  cursor: pointer;
  border-radius: 6px;
  transition: color 0.3s ease, background 0.3s ease, transform 0.2s ease;
  height: 100%;
  display: flex;
  align-items: center;
}

.tab-button:hover {
  color: var(--primary-yellow);
  background: rgba(255, 193, 7, 0.3);
  transform: scale(1.05);
}

.tab-button.active {
  color: var(--primary-yellow);
  background: rgba(255, 193, 7, 0.3);
  border-bottom: 2px solid var(--primary-yellow);
  border-radius: 6px;
}

/* Live Page */
.live-page {
  padding: 1rem;
  margin-top: 60px;
  background: transparent;
  z-index: 10;
}

.stream-box {
  position: relative;
  aspect-ratio: 9 / 16;
  transition: transform 0.3s ease;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: none;
  transform: scale(1) !important;
}

.stream-box:hover {
  transform: scale(1.03);
}

.stream-preview {
  width: 100%;
  height: 100%;
}

.stream-preview .video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transform: scale(1) !important;
}

.stream-preview .video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(18, 18, 18, 0.5), transparent);
  backdrop-filter: none;
  padding: 0.75rem;
  border-radius: 0 0 10px 10px;
}

.stream-preview .video-username {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-yellow);
  text-decoration: none;
}

.stream-preview .video-description {
  font-size: 10px;
  max-height: 30px;
}

.stream-preview .view-count {
  font-size: 10px;
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--primary-yellow);
  font-weight: 500;
}

/* Live Stream */
.video-container.live-stream {
  border: none;
  box-shadow: none;
}

.video-container.live-stream.replay {
  border: none;
  box-shadow: none;
}

.video-container.live-stream .live-button {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--primary-red);
  color: var(--primary-white);
  padding: 6px 12px;
  border-radius: 14px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 50;
  transition: background 0.3s ease, transform 0.2s ease;
}

.video-container.live-stream.replay .live-button {
  background: var(--primary-yellow);
  color: var(--background-darker);
}

.video-container.live-stream .live-button:hover {
  transform: scale(1.05);
  background: #B50F1A;
}

.video-container.live-stream.replay .live-button:hover {
  background: #E6A700;
}

.live-button-icon {
  width: 24px;
  height: 24px;
}

/* Chat Messages */
.chat-messages {
  position: absolute;
  bottom: 70px;
  right: 8px;
  width: 220px;
  max-height: 180px;
  overflow-y: auto;
  background: rgba(18, 18, 18, 0.3);
  backdrop-filter: none;
  border-radius: 8px;
  padding: 6px;
  z-index: 10;
}

.chat-message {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 6px;
  font-size: 11px;
  color: var(--primary-white);
  transition: background 0.2s ease;
}

.chat-message:hover {
  background: rgba(255, 193, 7, 0.2);
  border-radius: 6px;
}

.chat-message-username {
  font-weight: 600;
  color: var(--primary-yellow);
}

.chat-message-content {
  flex: 1;
  word-break: break-word;
}

.chat-message-report {
  color: var(--primary-red);
  cursor: pointer;
  font-size: 9px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.chat-message-report:hover {
  color: #B50F1A;
  transform: scale(1.1);
}

.chat-message-report:focus {
  outline: 2px solid var(--primary-blue);
  outline-offset: 2px;
}

/* Comment Form */
.comment-form {
  display: flex;
  gap: 8px;
  padding: 8px;
  background: rgba(18, 18, 18, 0.3);
  backdrop-filter: none;
  border-radius: 8px;
  position: absolute;
  bottom: 70px;
  left: 16px;
  right: 16px;
  z-index: 10;
}

.comment-input {
  flex: 1;
  padding: 6px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--primary-white);
  font-size: 12px;
}

.comment-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.comment-input:focus {
  outline: 2px solid var(--primary-yellow);
  border-color: var(--primary-yellow);
}

.comment-button {
  padding: 6px 12px;
  background: var(--primary-blue);
  color: var(--primary-white);
  border: none;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.comment-button:hover {
  background: #1A7DE2;
  transform: scale(1.05);
}

.comment-button:focus {
  outline: 2px solid var(--primary-yellow);
}

/* Error and Toast Messages */
.error-message {
  background: rgba(255, 77, 79, 0.8);
  color: var(--primary-white);
  padding: 16px;
  text-align: center;
  border-radius: 10px;
  margin: 16px;
  font-size: 14px;
  font-weight: 600;
  z-index: 50;
  position: relative;
}

.error-message button {
  background: var(--primary-yellow);
  color: var(--background-darker);
  padding: 6px 12px;
  border-radius: 8px;
  border: none;
  font-size: 12px;
  font-weight: 600;
  margin-top: 8px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.error-message button:hover {
  background: #E6A700;
  transform: scale(1.05);
}

.toast.error {
  background: #FF4D4F;
  color: var(--primary-white);
  padding: 8px 16px;
  text-align: center;
  border-radius: 8px;
  position: fixed;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  font-size: 12px;
  box-shadow: 0 4px 10px var(--shadow-dark);
  animation: slideDown 0.3s ease-in-out;
}

.toast.success {
  background: #28A745;
  color: var(--primary-white);
  padding: 8px 16px;
  text-align: center;
  border-radius: 8px;
  position: fixed;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  font-size: 12px;
  box-shadow: 0 4px 10px var(--shadow-dark);
  animation: slideDown 0.3s ease-in-out;
}

/* Profile and Settings */
.profile-settings {
  padding: 12px;
  background: rgba(18, 18, 18, 0.3);
  backdrop-filter: none;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.profile-pic {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid var(--primary-yellow);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.profile-info {
  flex: 1;
}

.profile-username {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-yellow);
}

.profile-bio {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

.profile-stats {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.profile-stat {
  font-size: 13px;
}

.profile-stat span {
  font-weight: bold;
  color: var(--primary-yellow);
}

.profile-tab {
  flex: 1;
  padding: 10px;
  text-align: center;
  font-size: 13px;
  color: var(--primary-white);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease, border-bottom 0.3s ease;
}

.profile-tab.active {
  color: var(--primary-yellow);
  border-bottom: 2px solid var(--primary-yellow);
}

.profile-tab:hover {
  color: var(--primary-yellow);
}

/* Report Modal */
.report-modal {
  position: fixed;
  inset: 0;
  background: rgba(18, 18, 18, 0.5);
  backdrop-filter: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: fadeIn 0.3s ease-in-out;
}

.report-modal-content {
  background: rgba(18, 18, 18, 0.9);
  backdrop-filter: none;
  padding: 20px;
  border-radius: 10px;
  max-width: 380px;
  width: 90%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease-in-out;
}

/* Animations */
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  0% { transform: translateY(20px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes slideDown {
  0% { transform: translateY(-10px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* 404 Page */
.not-found-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: transparent;
  color: var(--primary-white);
  z-index: 10;
}

.not-found-content {
  text-align: center;
  padding: 20px;
  max-width: 380px;
  width: 90%;
  background: rgba(18, 18, 18, 0.9);
  backdrop-filter: none;
  border-radius: 10px;
}

.not-found-icon {
  font-size: 40px;
  color: var(--primary-red);
  margin-bottom: 12px;
}

.not-found-title {
  font-size: 22px;
  font-weight: bold;
  color: var(--primary-yellow);
  margin-bottom: 8px;
}

.not-found-message {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

/* Shared Utility Classes */
.padding-16 { padding: 16px; }
.margin-top-8 { margin-top: 8px; }
.text-primary-white { color: var(--primary-white); }
.width-full { width: 100%; }
.height-160 { height: 160px; }
.object-cover { object-fit: cover; }
.rounded { border-radius: 8px; }
.margin-bottom-24 { margin-bottom: 24px; }
.width-96 { width: 96px; }
.height-96 { height: 96px; }
.rounded-full { border-radius: 50%; }
.text-xl { font-size: 1.25rem; }
.font-bold { font-weight: bold; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.gap-16 { gap: 16px; }
.justify-center { justify-content: center; }
.min-height-screen { min-height: 100vh; }
.background-dark { background-color: var(--background-dark); }
.text-center { text-align: center; }
.reset-layout { transform: none !important; zoom: 1 !important; -webkit-transform: none !important; -ms-transform: none !important; }

/* Home-specific reset */
.video-feed.reset-layout {
  transform: none !important;
  zoom: 1 !important;
  -webkit-transform: none !important;
  -ms-transform: none !important;
}

@media (max-width: 767px) {
  .padding-16 { padding: 12px; }
  .margin-top-8 { margin-top: 6px; }
  .margin-bottom-24 { margin-bottom: 18px; }
  .width-96 { width: 80px; }
  .height-96 { height: 80px; }

  .bottom-nav-bar {
    height: 46px;
    padding: 2px 1px;
    grid-template-columns: repeat(7, minmax(28px, 1fr));
  }

  .nav-icon {
    font-size: 1.0rem;
    padding: 2px;
    max-width: 28px;
  }

  .nav-label {
    font-size: 0.5rem;
  }

  .create-icon {
    padding: 0;
    width: 36px;
    height: 36px;
    font-size: 1.0rem;
    line-height: 36px;
  }

  .search-bar {
    width: 30%;
    max-width: 130px;
    padding: 2px 5px;
    top: 46px;
    height: 26px;
  }

  .search-icon {
    font-size: 9px;
    margin-right: 3px;
  }

  .search-input {
    font-size: 9px;
  }

  .video-tabs {
    top: 46px;
    right: 8px;
    height: 26px;
  }

  .tab-button {
    padding: 4px 10px; /* Increased padding */
    font-size: 0.85rem; /* Increased font-size */
  }

  .nav-bar {
    height: 28px;
  }

  .toast.error,
  .toast.success {
    top: 28px; /* Adjusted for new nav height */
  }
}