/**
 * Base Styles
 * Reset, typography, and fundamental styles
 */

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Main Content Styles */
.site-main {
  min-height: 60vh;
}


.main-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-top: 65px;
}

.generic-entry {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 48px;
  padding: 0 24px;
}

.generic-entry p {
  margin-bottom: 16px;
}

/* Mobile Breadcrumb Wrapper */
.mobile-breadcrumb-wrapper {
  display: none; /* Hidden on desktop */
}

/* Custom Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

.border-separator{
  display: none;
  width: 100%;
  height: 4px;
  background-color: #EDF2F9;
}

/* Mobile Responsive Styles */
@media (max-width: 767px) {
  .border-separator{
    display: block;
  }

  .container {
    padding: 0 16px;
  }

  .main-container {
    padding-top: 36px;
  }

  /* Show mobile breadcrumb on mobile devices */
  .mobile-breadcrumb-wrapper {
    width: 100%;
    display: block;
    margin: 24px 0;
    padding: 0 16px;
  }

  ::-webkit-scrollbar {
    display: none;
  }

  ::-webkit-scrollbar-track {
    display: none;
  }

  ::-webkit-scrollbar-thumb {
    display: none;
  }
}

@media screen and (max-width: 782px) {
  #wpadminbar {
      position: fixed;
  }
}