body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:root {
  --brand-word-primary: #0d6efd;
  --brand-word-secondary: #ffffff;
  --brand-word-hero-primary: #0b3d91;
  --brand-word-hero-secondary: #ffffff;
}

.brand-word {
  display: inline-flex;
  align-items: baseline;
  font: inherit;
  letter-spacing: inherit;
}

.brand-word__primary,
.brand-word__secondary {
  display: inline-block;
}

.brand-word__primary {
  color: var(--brand-word-primary);
}

.brand-word__secondary {
  color: var(--brand-word-secondary);
}

.brand-word--navbar {
  font-weight: 800;
}

.brand-word--hero .brand-word__primary {
  color: var(--brand-word-hero-primary);
}

.brand-word--hero .brand-word__secondary {
  color: var(--brand-word-hero-secondary);
}

.front-title h1 {
  margin-bottom: 0.5rem;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}

.profile-view-page {
  padding: 1rem;
}

.profile-card {
  width: min(100%, 640px);
  max-width: 600px;
  margin: 2rem auto;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 0;
  border-radius: 24px;
  overflow: hidden;
}

.profile-card .card-body {
  padding: 1.5rem;
}

.profile-card--status {
  padding: 1rem;
}

.profile-alert {
  margin: 0 0 1rem;
}

.profile-loading {
  padding: 2.75rem 1rem;
  color: #6c757d;
  font-weight: 600;
}

.organization-logo {
  text-align: center;
}

.organization-logo__image {
  max-width: 150px;
  max-height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}

.profile-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 1.9rem;
  font-weight: 700;
  color: white;
}

.profile-name {
  margin-bottom: 0.35rem;
  font-size: clamp(1.7rem, 5vw, 2.2rem);
  text-align: center;
}

.profile-intro {
  max-width: 460px;
  margin: 0.75rem auto 1rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(13, 110, 253, 0.08), rgba(13, 110, 253, 0.02));
  border: 1px solid rgba(13, 110, 253, 0.12);
}

.profile-intro__eyebrow {
  margin-bottom: 0.35rem;
  color: #6c757d;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-intro__company {
  margin-bottom: 0.45rem;
  color: #0d6efd;
  font-size: 1rem;
  font-weight: 700;
}

.profile-intro__text {
  color: #212529;
  line-height: 1.55;
}

.profile-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  max-width: 460px;
  margin: 0 auto;
}

.profile-contact-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(13, 110, 253, 0.12);
  background: rgba(13, 110, 253, 0.06);
}

.profile-contact-icon {
  flex: 0 0 auto;
  opacity: 0.9;
}

.profile-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #212529;
  text-decoration: none;
  font-weight: 600;
  line-height: 1.2;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.profile-contact-item:hover .profile-contact-link {
  color: #0d6efd;
  text-decoration: none;
}

.profile-contact-item:focus-within {
  outline: 2px solid rgba(13, 110, 253, 0.45);
  outline-offset: 2px;
}

.profile-contact-item.profile-contact-text .profile-contact-link {
  font-weight: 500;
}

@media (max-width: 767.98px) {
  .profile-contact-item {
    justify-content: flex-start;
  }
}

.social-links a {
  margin: 0 0.5rem;
  font-size: 1.5rem;
}

.qr-code-modal__header {
  align-items: center;
}

.qr-code-modal__title {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  line-height: 1.2;
}

.qr-code-modal__body {
  padding: 1.25rem;
}

.qr-code-modal__loading {
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-code-modal__image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.qr-code-modal__image {
  display: block;
  max-width: min(100%, 320px);
  height: auto !important;
  margin: 0 auto;
}

.qr-code-modal__caption {
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}

.qr-code-modal__count {
  margin-bottom: 0;
}

.qr-code-modal__footer {
  justify-content: center;
  gap: 0.75rem;
}

.qr-code-modal__action {
  min-width: 140px;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #f3f5f7;
}

.video-container__frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.profile-actions > * {
  flex: 1 1 180px;
}

.dashboard-profile-qr-row {
  width: 100%;
}

.dashboard-profile-action {
  min-height: 44px;
}

.dashboard-profile-action--qr {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(13, 110, 253, 0.22);
}

.eco-badge {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  display: inline-block;
  margin: 1rem 0;
}

.stats-card {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin: 1rem 0;
}

/* ===================================
   TOAST NOTIFICATION STYLES
   =================================== */

/* Toast container positioning for better visibility */

.toast-container {
  position: fixed !important;
  z-index: 9999 !important;
}

/* Mobile responsive toast positioning */

@media (max-width: 768px) {
  .toast-container {
    top: 60px !important;
    left: 10px !important;
    right: 10px !important;
    transform: none !important;
    width: calc(100% - 20px) !important;
    max-width: none !important;
  }
}

@media (max-width: 767.98px) {
  .profile-view-page {
    padding: 0.75rem;
  }

  .profile-card {
    margin: 0.5rem auto 1rem;
    border-radius: 18px;
  }

  .profile-card .card-body {
    padding: 1rem;
  }

  .organization-logo__image {
    max-width: 130px;
    max-height: 52px;
  }

  .profile-avatar {
    width: 80px;
    height: 80px;
    font-size: 1.55rem;
  }

  .profile-intro {
    padding: 0.9rem 0.95rem;
    border-radius: 14px;
  }

  .profile-contact-item {
    justify-content: flex-start;
    padding: 0.65rem 0.8rem;
    border-radius: 18px;
  }

  .profile-contact-link {
    font-size: 0.95rem;
  }

  .profile-actions {
    flex-direction: column;
  }

  .profile-actions > * {
    flex: 1 1 auto;
    width: 100%;
  }

  .eco-badge {
    display: block;
    text-align: center;
  }
}

@media (max-width: 374.98px) {
  .qr-code-modal__header {
    padding: 0.85rem 1rem;
  }

  .qr-code-modal__body {
    padding: 0.9rem;
  }

  .qr-code-modal__title {
    font-size: 1rem;
  }

  .qr-code-modal__image {
    max-width: min(100%, 240px);
  }

  .qr-code-modal__footer {
    flex-direction: column;
  }

  .qr-code-modal__action {
    width: 100%;
  }

  .profile-view-page {
    padding: 0.5rem;
  }

  .profile-card .card-body {
    padding: 0.85rem;
  }

  .profile-intro__text,
  .profile-contact-link {
    font-size: 0.92rem;
  }
}

/* ===================================
   MOBILE RESPONSIVE STYLES
   =================================== */

/* Mobile-first responsive breakpoints */

@media (max-width: 767.98px) {
  /* Container padding for mobile */
  .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  /* Dashboard header - make it stack on mobile */
  .dashboard-header {
    flex-direction: column !important;
    gap: 1rem;
  }

  .dashboard-header h1 {
    font-size: 1.5rem !important;
  }

  .dashboard-header .btn {
    width: 100%;
  }

  /* Profile cards - full width on mobile */
  .profile-card {
    margin: 1rem 0;
  }

  /* Eco badge - smaller text on mobile */
  .eco-badge {
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
    text-align: center;
    display: block;
  }

  /* Button groups - stack vertically on mobile */
  .d-flex.flex-wrap.gap-2 {
    flex-direction: column !important;
  }

  .d-flex.flex-wrap.gap-2 .btn {
    width: 100% !important;
  }

  /* Card actions - better spacing on mobile */
  .card-body .d-flex.flex-wrap.gap-2 {
    gap: 0.5rem !important;
  }

  /* Alert boxes - better padding on mobile */
  .alert {
    padding: 0.75rem;
    font-size: 0.9rem;
  }

  /* Tables - make them scrollable on mobile */
  .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Forms - full width inputs on mobile */
  .form-control,
  .form-select {
    font-size: 16px; /* Prevents zoom on iOS */
  }

  /* Stats cards - better mobile layout */
  .stats-card {
    padding: 1rem;
    margin: 0.5rem 0;
  }

  /* Shop page hero - reduce padding on mobile */
  .shop-hero {
    padding: 2rem 0 !important;
  }

  .shop-hero h1 {
    font-size: 1.75rem !important;
  }

  .shop-hero .lead {
    font-size: 1rem !important;
  }

  /* Product cards - better mobile spacing */
  .product-image-container {
    height: 200px !important;
  }

  /* Filter section - stack on mobile */
  .filter-section {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .filter-section .form-select {
    max-width: 100% !important;
    margin-top: 1rem;
  }

  /* Feature sections - stack on mobile */
  .features-row .col-md-3 {
    margin-bottom: 2rem !important;
  }

  /* User info - ensure it's visible on mobile */
  .user-info {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
  }

  .user-info .fw-bold {
    font-size: 0.8rem;
  }

  .user-info .badge {
    font-size: 0.7rem;
  }

  /* Navbar buttons - better mobile layout */
  .navbar .btn {
    font-size: 0.8rem;
    padding: 0.375rem 0.75rem;
  }

  /* Modal dialogs - better mobile sizing */
  .modal-dialog {
    margin: 0.5rem;
  }

  .modal-content {
    border-radius: 0.5rem;
  }

  /* Mobile-friendly modal */
  .modal-mobile-friendly .modal-dialog {
    margin: 0.5rem;
    max-width: calc(100vw - 1rem);
  }

  .modal-mobile-friendly .modal-body {
    padding: 1rem;
  }

  .modal-mobile-friendly .form-label {
    font-size: 0.9rem;
    font-weight: 600;
  }

  .modal-mobile-friendly .form-control,
  .modal-mobile-friendly .form-select {
    font-size: 16px; /* Prevents zoom on iOS */
  }

  /* Social links - better touch targets */
  .social-links a {
    margin: 0.5rem;
    font-size: 1.75rem;
    display: inline-block;
    min-width: 44px;
    min-height: 44px;
    text-align: center;
  }

  /* QR Code display - better mobile sizing */
  .qr-code-modal img {
    max-width: 100%;
    height: auto;
  }

  .qr-code-modal__body {
    padding: 1rem;
  }

  .qr-code-modal__title {
    font-size: 1.15rem;
    gap: 0.5rem;
  }

  .qr-code-modal__image {
    max-width: min(100%, 280px);
  }

  .qr-code-modal__caption {
    font-size: 0.95rem;
  }

  .qr-code-modal__footer {
    flex-wrap: nowrap;
    align-items: stretch;
  }

  .qr-code-modal__action {
    min-width: 0;
  }

  .dashboard-profile-qr-row,
  .dashboard-profile-actions > [class*='col-'] {
    width: 100%;
  }

  .dashboard-profile-action {
    width: 100%;
    min-height: 52px;
    font-size: 1rem;
    border-radius: 14px;
  }

  .dashboard-profile-action--qr {
    min-height: 56px;
    font-size: 1.05rem;
    box-shadow: 0 14px 30px rgba(13, 110, 253, 0.28);
  }

  /* Analytics charts - responsive sizing */
  .chart-container {
    position: relative;
    height: 250px;
  }

  /* Profile viewer - better mobile layout */
  .profile-viewer {
    padding: 1rem;
  }

  .profile-viewer h1 {
    font-size: 1.75rem;
  }

  .profile-viewer h2 {
    font-size: 1.25rem;
  }

  /* Team admin - better mobile table */
  .team-admin-table {
    font-size: 0.875rem;
  }

  /* Badge groups - wrap nicely on mobile */
  .badge {
    margin: 0.25rem;
  }

  /* Spacing utilities for mobile */
  .mobile-mb-3 {
    margin-bottom: 1rem;
  }

  .mobile-mt-3 {
    margin-top: 1rem;
  }
}

/* Tablet breakpoint (768px - 991.98px) */

@media (min-width: 768px) and (max-width: 991.98px) {
  .container {
    max-width: 720px;
  }

  .dashboard-header h1 {
    font-size: 1.75rem;
  }

  .product-image-container {
    height: 220px !important;
  }
}

/* Improve touch targets on all devices */

@media (hover: none) and (pointer: coarse) {
  .btn {
    min-height: 44px;
    padding: 0.5rem 1rem;
  }

  .nav-link {
    padding: 0.75rem 1rem;
  }

  a {
    min-height: 44px;
  }
}

/* Landscape orientation on mobile */

@media (max-width: 767.98px) and (orientation: landscape) {
  .shop-hero {
    padding: 1.5rem 0 !important;
  }

  .product-image-container {
    height: 180px !important;
  }
}

/* Very small devices (less than 375px) */

@media (max-width: 374.98px) {
  body {
    font-size: 14px;
  }

  .container {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }

  .dashboard-header h1 {
    font-size: 1.25rem !important;
  }

  .btn {
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
  }

  .card {
    font-size: 0.875rem;
  }

  .product-image-container {
    height: 180px !important;
  }
}

/* Improve horizontal scrolling for tables on mobile */

.table-responsive {
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
  .table-responsive {
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
  }
}

/* Better button spacing on mobile */

@media (max-width: 767.98px) {
  .btn-group-vertical {
    width: 100%;
  }

  .btn-group-vertical .btn {
    width: 100%;
  }
}

/* Loading states - better mobile display */

@media (max-width: 767.98px) {
  .spinner-border {
    width: 2rem;
    height: 2rem;
  }
}

/* Utility classes for mobile */

.mobile-hidden {
  display: none;
}

@media (min-width: 768px) {
  .mobile-hidden {
    display: block;
  }
}

.desktop-hidden {
  display: block;
}

@media (min-width: 768px) {
  .desktop-hidden {
    display: none;
  }
}

/* ===================================
   MOBILE SIDEBAR NAVIGATION
   =================================== */

/* Mobile Menu Button */

.mobile-menu-btn {
  background: transparent;
  border: none;
  color: white;
  padding: 0.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.mobile-menu-btn:hover {
  opacity: 0.8;
}

.mobile-menu-btn:active {
  opacity: 0.6;
}

/* Sidebar Overlay (Backdrop) */

.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1040;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Mobile Sidebar */

.mobile-sidebar {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100vh;
  background: #212529;
  z-index: 1050;
  transition: left 0.3s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.3);
}

.mobile-sidebar.open {
  left: 0;
}

/* Sidebar Header */

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: #1a1d20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 60px;
}

.sidebar-close-btn {
  background: transparent;
  border: none;
  color: white;
  padding: 0.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
  border-radius: 4px;
}

.sidebar-close-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.sidebar-close-btn:active {
  opacity: 0.6;
}

/* Sidebar Content */

.sidebar-content {
  flex: 1;
  padding: 1rem 0;
  overflow-y: auto;
}

.sidebar-link {
  display: flex;
  align-items: center;
  padding: 0.875rem 1.25rem;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.2s, padding-left 0.2s;
  border: none;
  background: transparent;
  width: 100%;
  text-align: left;
  font-size: 1rem;
  cursor: pointer;
}

.sidebar-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding-left: 1.5rem;
}

.sidebar-link:active {
  background-color: rgba(255, 255, 255, 0.15);
}

.sidebar-link svg {
  width: 1.25rem;
  transition: transform 0.2s;
}

.sidebar-link:hover svg {
  transform: translateX(3px);
}

.sidebar-submenu {
  display: flex;
  flex-direction: column;
  padding: 0 0 0.5rem;
}

.sidebar-sublink {
  display: flex;
  align-items: center;
  padding: 0.7rem 1.25rem 0.7rem 2.9rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s, padding-left 0.2s;
  border-left: 2px solid rgba(255, 255, 255, 0.08);
  margin-left: 1.25rem;
  font-size: 0.95rem;
}

.sidebar-sublink:hover {
  background-color: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-left-color: rgba(255, 255, 255, 0.3);
  padding-left: 3.15rem;
}

.sidebar-sublink svg {
  width: 1.1rem;
}

/* Sidebar Divider */

.sidebar-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 1rem 1.25rem;
}

/* Sidebar User Info */

.sidebar-user-info {
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  margin: 0.5rem 0;
}

/* Sidebar Logout Button */

.sidebar-logout {
  color: #dc3545;
  margin-top: 0.5rem;
}

.sidebar-logout:hover {
  background-color: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}

/* Desktop Navigation */

.desktop-nav .nav-link {
  text-decoration: none;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.desktop-nav .nav-link:hover {
  opacity: 0.8;
}

/* User Info on Navbar */

.user-info {
  text-align: right;
  line-height: 1.2;
  white-space: nowrap;
}

.user-info .fw-bold {
  font-size: 0.875rem;
}

.user-info .badge {
  font-size: 0.75rem;
}

/* Prevent body scroll when sidebar is open */

body.sidebar-open {
  overflow: hidden;
}

/* Responsive adjustments */

@media (max-width: 991.98px) {
  .mobile-sidebar {
    width: 280px;
    left: -280px;
  }
}

@media (max-width: 575.98px) {
  .mobile-sidebar {
    width: 260px;
    left: -260px;
  }
  
  .sidebar-link {
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
  }
}

/* Animation for sidebar items */

.mobile-sidebar.open .sidebar-link {
  animation: slideInFromLeft 0.3s ease forwards;
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Stagger animation for sidebar items */

.mobile-sidebar.open .sidebar-link:nth-child(1) {
  animation-delay: 0.05s;
}

.mobile-sidebar.open .sidebar-link:nth-child(2) {
  animation-delay: 0.1s;
}

.mobile-sidebar.open .sidebar-link:nth-child(3) {
  animation-delay: 0.15s;
}

.mobile-sidebar.open .sidebar-link:nth-child(4) {
  animation-delay: 0.2s;
}

.mobile-sidebar.open .sidebar-link:nth-child(5) {
  animation-delay: 0.25s;
}

.mobile-sidebar.open .sidebar-link:nth-child(6) {
  animation-delay: 0.3s;
}

/* Touch device optimizations for sidebar */

@media (hover: none) and (pointer: coarse) {
  .sidebar-link {
    min-height: 48px;
  }
  
  .mobile-menu-btn,
  .sidebar-close-btn {
    min-width: 44px;
    min-height: 44px;
  }
}

/* Social Media Icons */

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  font-size: 1.25rem;
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.social-link:focus {
  outline: 2px solid #0d6efd;
  outline-offset: 2px;
}

/* Platform-specific brand colors */

.social-linkedin { color: #0077b5; }

.social-linkedin:hover { background-color: rgba(0, 119, 181, 0.1); }

.social-x { color: #000000; }

.social-x:hover { background-color: rgba(0, 0, 0, 0.1); }

.social-instagram { 
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.social-instagram:hover { background-color: rgba(225, 48, 108, 0.1); }

.social-facebook { color: #1877f2; }

.social-facebook:hover { background-color: rgba(24, 119, 242, 0.1); }

.social-github { color: #333333; }

.social-github:hover { background-color: rgba(51, 51, 51, 0.1); }

.social-youtube { color: #ff0000; }

.social-youtube:hover { background-color: rgba(255, 0, 0, 0.1); }

.social-tiktok { color: #000000; }

.social-tiktok:hover { background-color: rgba(0, 0, 0, 0.1); }

.social-discord { color: #5865f2; }

.social-discord:hover { background-color: rgba(88, 101, 242, 0.1); }

.social-telegram { color: #0088cc; }

.social-telegram:hover { background-color: rgba(0, 136, 204, 0.1); }

.social-whatsapp { color: #25d366; }

.social-whatsapp:hover { background-color: rgba(37, 211, 102, 0.1); }

/* Mobile responsive sizing */

@media (max-width: 767.98px) {
  .social-link {
    width: 2rem;
    height: 2rem;
    font-size: 1rem;
  }
  
  .social-links {
    gap: 0.5rem;
  }
}

@media (max-width: 374.98px) {
  .social-link {
    width: 1.75rem;
    height: 1.75rem;
    font-size: 0.875rem;
  }
  
  .social-links {
    gap: 0.375rem;
  }
}

/* Tooltip customization */

.tooltip {
  font-size: 0.875rem;
}

/* Company Branding Styles */

.company-branding {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 1px solid #dee2e6;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.company-branding .company-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.company-branding .company-logo img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.company-branding h1,
.company-branding h4 {
  color: #495057;
  font-weight: 600;
}

.company-branding .badge {
  font-size: 0.75rem;
  padding: 0.375rem 0.75rem;
}

/* Mobile responsive company branding */

@media (max-width: 767.98px) {
  .company-branding .company-logo {
    padding: 0.375rem;
  }
  
  .company-branding .company-logo img {
    max-width: 100px !important;
    max-height: 40px !important;
  }
  
  .company-branding h1 {
    font-size: 1.5rem;
  }
  
  .company-branding h4 {
    font-size: 1.25rem;
  }
}

/* Disabled navigation links */

.nav-link.disabled,
.sidebar-link.disabled {
  opacity: 0.6;
  cursor: default !important;
  pointer-events: none;
}

.nav-link.disabled:hover,
.sidebar-link.disabled:hover {
  color: inherit !important;
  text-decoration: none !important;
}

/* Desktop navigation disabled state */

.desktop-nav .nav-link.disabled {
  color: #6c757d !important;
}

/* Mobile sidebar disabled state */

.sidebar-link.disabled {
  color: #adb5bd !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
}

.tooltip-inner {
  background-color: #333;
  color: white;
  border-radius: 6px;
  padding: 0.5rem 0.75rem;
}

/* ===================================
   PASSWORD VISIBILITY TOGGLE (WEB)
   =================================== */

.password-field {
  position: relative;
}

.password-field .form-control {
  padding-right: 3rem; /* room for the eye icon */
}

.password-toggle-btn {
  position: absolute;
  top: 50%;
  right: 0.5rem;
  transform: translateY(-50%);
  padding: 0.25rem 0.5rem;
  border: 1px solid transparent;
  border-radius: 0.375rem;
  color: #6c757d;
  background: transparent;
}

.password-toggle-btn:hover {
  color: #495057;
  background: rgba(0, 0, 0, 0.04);
}

.password-toggle-btn:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* Organization Logo */

.organization-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.organization-logo img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Mobile responsive logo */

@media (max-width: 767.98px) {
  .organization-logo {
    padding: 0.75rem;
    margin-bottom: 1rem;
  }
  
  .organization-logo img {
    max-width: 120px !important;
    max-height: 50px !important;
  }
}

/* Video Container Styles */

.video-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-bottom: 1rem;
}

.video-container iframe {
  border-radius: 8px;
}

/* Mobile responsive video */

@media (max-width: 767.98px) {
  .video-container {
    margin: 0 -1rem 1rem -1rem;
    border-radius: 0;
  }
  
  .video-container iframe {
    border-radius: 0;
  }
}


