/*
* demo.css
* File include item demo only specific css only
******************************************************************************/

.light-style .menu .app-brand.demo {
  height: 64px;
}

.dark-style .menu .app-brand.demo {
  height: 64px;
}

.app-brand-logo.demo {
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -ms-flexbox;
  display: flex;
  width: 34px;
  height: 24px;
}

.app-brand-logo.demo svg {
  width: 35px;
  height: 24px;
}

.app-brand-text.demo {
  font-size: 1.375rem;
}

/* ! For .layout-navbar-fixed added fix padding top tpo .layout-page */
.layout-navbar-fixed .layout-wrapper:not(.layout-without-menu) .layout-page {
  padding-top: 64px !important;
}
.layout-navbar-fixed .layout-wrapper:not(.layout-horizontal):not(.layout-without-menu) .layout-page {
  padding-top: 78px !important;
}
/* Navbar page z-index issue solution */
.content-wrapper .navbar {
  z-index: auto;
}

/*
* Content
******************************************************************************/

.demo-blocks > * {
  display: block !important;
}

.demo-inline-spacing > * {
  margin: 1rem 0.375rem 0 0 !important;
}

/* ? .demo-vertical-spacing class is used to have vertical margins between elements. To remove margin-top from the first-child, use .demo-only-element class with .demo-vertical-spacing class. For example, we have used this class in forms-input-groups.html file. */
.demo-vertical-spacing > * {
  margin-top: 1rem !important;
  margin-bottom: 0 !important;
}
.demo-vertical-spacing.demo-only-element > :first-child {
  margin-top: 0 !important;
}

.demo-vertical-spacing-lg > * {
  margin-top: 1.875rem !important;
  margin-bottom: 0 !important;
}
.demo-vertical-spacing-lg.demo-only-element > :first-child {
  margin-top: 0 !important;
}

.demo-vertical-spacing-xl > * {
  margin-top: 5rem !important;
  margin-bottom: 0 !important;
}
.demo-vertical-spacing-xl.demo-only-element > :first-child {
  margin-top: 0 !important;
}

.rtl-only {
  display: none !important;
  text-align: left !important;
  direction: ltr !important;
}

[dir='rtl'] .rtl-only {
  display: block !important;
}

/* Dropdown buttons going out of small screens */
@media (max-width: 576px) {
  #dropdown-variation-demo .btn-group .text-truncate {
    width: 254px;
    position: relative;
  }
  #dropdown-variation-demo .btn-group .text-truncate::after {
    position: absolute;
    top: 45%;
    right: 0.65rem;
  }
}

/*
* Layout demo
******************************************************************************/

.layout-demo-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 1rem;
}
.layout-demo-placeholder img {
  width: 900px;
}
.layout-demo-info {
  text-align: center;
  margin-top: 1rem;
}

/*
* Mobile Menu Header (for horizontal layout on small screens)
******************************************************************************/

/* Mobile menu header - hidden by default in horizontal layout */
.layout-menu-horizontal .mobile-menu-header,
.menu-horizontal .mobile-menu-header {
  display: none !important;
}

/* Mobile menu header - visible in vertical mode */
.menu-vertical .mobile-menu-header {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: transparent;
  border-bottom: none;
}

.dark-style .menu-vertical .mobile-menu-header {
  background: transparent;
  border-bottom: none;
}

.menu-vertical .mobile-menu-header .mobile-menu-logo {
  display: flex;
  align-items: center;
}

.menu-vertical .mobile-menu-header .mobile-menu-logo img {
  height: 36px;
  max-width: 140px;
  object-fit: contain;
  filter: none;
  transition: all 0.3s ease;
}

/* Shrink logo when menu is collapsed */
.layout-menu-collapsed .menu-vertical .mobile-menu-header .mobile-menu-logo img {
  height: 32px;
  max-width: 48px;
  transform: scale(0.9);
}

/* Return logo to full size when hovering collapsed menu */
.layout-menu-hover .menu-vertical .mobile-menu-header .mobile-menu-logo img {
  height: 36px;
  max-width: 140px;
  transform: scale(1);
}

/* Unshrink/zoom logo on menu hover */
.menu-vertical:hover .mobile-menu-header .mobile-menu-logo img {
  transform: scale(1.1);
}

/* Keep logo centered when menu is collapsed */
.layout-menu-collapsed .menu-vertical .mobile-menu-header {
  justify-content: center;
  margin-left: 1rem;
}

/* Spread items when hovering collapsed menu */
.layout-menu-hover .menu-vertical .mobile-menu-header {
  justify-content: space-between;
}

.menu-vertical .mobile-menu-header .mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-size: 1.5rem;
  color: #6c757d;
  text-decoration: none;
  border-radius: 50%;
  transition: all 0.2s ease;
  opacity: 1;
  visibility: visible;
}

/* Show chevron icon on desktop, hide X icon */
.menu-vertical .mobile-menu-header .mobile-menu-close .mobile-close-icon {
  display: none;
}

.menu-vertical .mobile-menu-header .mobile-menu-close .desktop-toggle-icon {
  display: block;
}

/* Hide toggle icon when menu is collapsed */
.layout-menu-collapsed .menu-vertical .mobile-menu-header .mobile-menu-close {
  opacity: 0;
  visibility: hidden;
}

/* Show toggle icon on hover when collapsed so user can click to expand */
.layout-menu-collapsed .menu-vertical:hover .mobile-menu-header .mobile-menu-close {
  opacity: 1;
  visibility: visible;
}

.menu-vertical .mobile-menu-header .mobile-menu-close:hover {
  background-color: rgba(108, 117, 125, 0.1);
}

.dark-style .menu-vertical .mobile-menu-header .mobile-menu-close {
  color: #a8aaae;
}

.dark-style .menu-vertical .mobile-menu-header .mobile-menu-close:hover {
  background-color: rgba(168, 170, 174, 0.1);
}

/* Ensure menu-inner takes remaining space in vertical mode */
.menu-vertical .menu-inner {
  flex: 1 1 auto;
}

/* Override: Remove display flex from layout-menu divs on small screens */
@media (max-width: 1199.98px) {
  #layout-menu > .container-fluid,
  #layout-menu > div:not(.mobile-menu-header):not(.menu-inner) {
    display: none !important;
  }

  #layout-menu .menu-inner,
  #vertical-menu-inner.menu-inner {
    display: block !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    padding: 0.75rem 0 !important;
    margin: 0 !important;
    flex: 1 !important;
    height: auto !important;
  }

  /* Ensure mobile menu header is visible and properly styled on small screens */
  .menu-vertical .mobile-menu-header {
    display: flex !important;
    padding: 0.75rem 1rem;
  }

  .menu-vertical .mobile-menu-header .mobile-menu-logo img {
    height: 32px !important;
    max-width: 120px !important;
  }

  .menu-vertical .mobile-menu-header .mobile-menu-close {
    opacity: 1 !important;
    visibility: visible !important;
  }

  /* Show X icon on mobile, hide chevron icon */
  .menu-vertical .mobile-menu-header .mobile-menu-close .mobile-close-icon {
    display: block !important;
  }

  .menu-vertical .mobile-menu-header .mobile-menu-close .desktop-toggle-icon {
    display: none !important;
  }

  /* Override collapsed menu styles on mobile */
  .layout-menu-collapsed .menu-vertical .mobile-menu-header {
    justify-content: space-between !important;
    margin-left: 0 !important;
  }

  .layout-menu-collapsed .menu-vertical .mobile-menu-header .mobile-menu-logo img {
    height: 32px !important;
    max-width: 120px !important;
    transform: scale(1) !important;
  }

  .layout-menu-collapsed .menu-vertical .mobile-menu-header .mobile-menu-close {
    opacity: 1 !important;
    visibility: visible !important;
  }
}
