html {
    scroll-behavior: smooth;
  }

:root {
    --font-body: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Montserrat', 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
  }

  body {
    font-family: var(--font-body);
    background-color: #F9FAFB;
    margin: 0;
    padding: 0;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: var(--font-heading);
    font-weight: 600;
  }

  .secondary{
    background-color: #dae2e3;
    color: #315a89;
  }
.container {
    /*max-width: 75%; */
    margin: 50px auto;
    /*background: white;*/
    padding: 20px;
    /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);*/
    /*border-radius: 8px;*/
}

h1 {
    text-align: center;
    color: #1c3560;
    font-size: 2.5rem;
    font-weight: 600;
  }

.subtle {
  font-size: 1rem;
  margin-top: 5px;
  color: #315a89;
}
.search-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 16px;
    font-size: 1rem;
    line-height: 18px;
    line-height: 1.125rem;
    float: left;
    color: #e6e6e6;

}
/* Style the autocomplete input */
.ui-autocomplete-input {
    padding: 5px;
    border: 1px solid #ccc;
  }
  
  /* Style the dropdown menu */
  .ui-autocomplete {
    width: 200px;
    border: 1px solid #ccc;
    background-color: #fff;
    list-style: none;
  }
  
  /* Style the menu items */
  .ui-menu-item {
    padding: 5px 10px;
    cursor: pointer;
  }
  
  .ui-menu-item:hover {
    background-color: #eee;
  }

  .ui-helper-hidden-accessible{
display:none;
  }

.how-it-works-section {
  background: transparent;
  position: relative;
}

.how-it-works-container {
  background: transparent;
  margin: 0 auto;
  padding: 0 1rem;
  max-width: 1100px;
}

.how-it-works-panel {
  background-color: #3e72ae;
  border-radius: 28px;
  padding: 2rem;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.2);
}

.how-it-works-header {
  max-width: 720px;
  margin: 0 auto 2rem;
}

.how-it-works-title {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.how-it-works-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0;
}

.steps-container {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.step-card {
  background-color: #ffffff;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.step-icon {
  background: rgba(62, 114, 174, 0.15);
  color: #3e72ae;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.step-title {
  margin: 0;
  color: #1f3656;
  font-weight: 700;
}

.step-description {
  color: #455263;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.step-action .btn {
  background-color: #3e72ae;
  border: none;
  color: #ffffff;
  font-weight: 600;
  padding: 0.65rem 1.5rem;
  border-radius: 999px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.step-action .btn:hover {
  background-color: #325d8d;
  transform: translateY(-2px);
}

.community-highlight-section {
  background: #f7f9fc;
}

.community-highlight-header {
  max-width: 680px;
  margin: 0 auto 2rem;
}

.community-highlight-title {
  color: #1f3656;
  font-weight: 700;
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
}

.community-highlight-subtitle {
  color: #5a6b7b;
  font-size: 1.05rem;
  margin-bottom: 0;
}

.community-highlight-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.community-highlight-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.community-highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.12);
}

.community-highlight-card-title {
  color: #25446d;
  font-weight: 700;
  margin-bottom: 1rem;
}

.community-highlight-card-description {
  color: #455263;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.community-highlight-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  color: #5a6b7b;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.community-highlight-meta i {
  color: #3e72ae;
}

.community-highlight-card .btn {
  align-self: flex-start;
  border-radius: 999px;
  padding: 0.6rem 1.4rem;
  font-weight: 600;
}

.auth-body {
  background: #f3f5f9;
}

.auth-section {
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
}

.auth-container {
  max-width: 1000px;
}

.auth-container--compact {
  max-width: 480px;
}

.auth-container--wide {
  max-width: 720px;
}

.auth-alert {
  max-width: 720px;
  margin: 0 auto 1.5rem;
}

.auth-card {
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 0 20px 45px rgba(30, 58, 104, 0.18);
  overflow: hidden;
}

.auth-card--stacked {
  padding: 3rem 2.75rem;
}

.signup-card {
  padding: 3rem;
}

.auth-card-header h1,
.auth-card-header h2 {
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: #1f3656;
}

.auth-card-header p {
  color: #5a6b7b;
  margin-bottom: 2rem;
}

.auth-google-btn {
  background: #ffffff;
  color: #1f3656;
  border: 1px solid rgba(62, 114, 174, 0.25);
  font-weight: 600;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.2s ease;
}

.auth-google-btn:hover {
  background: #f5f7fb;
  border-color: rgba(62, 114, 174, 0.4);
}

.auth-google-icon {
  background: #ffffff;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #3e72ae;
  font-size: 1.1rem;
}

.auth-divider {
  position: relative;
  text-align: center;
  margin-bottom: 2rem;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  height: 1px;
  background: rgba(31, 54, 86, 0.1);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.auth-divider::before {
  left: 0;
  width: 45%;
}

.auth-divider::after {
  right: 0;
  width: 45%;
}

.auth-divider span {
  position: relative;
  display: inline-block;
  padding: 0 1rem;
  background: #ffffff;
  color: #5a6b7b;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
}

.auth-input {
  border-radius: 12px;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(31, 54, 86, 0.15);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-input:focus {
  border-color: #3e72ae;
  box-shadow: 0 0 0 0.2rem rgba(62, 114, 174, 0.15);
}

.auth-submit-btn {
  padding: 0.8rem 1rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
}

.auth-link-small {
  color: #3e72ae;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}

.auth-link-small:hover {
  text-decoration: underline;
}

.auth-footer-text {
  margin-top: 2rem;
  text-align: center;
  color: #5a6b7b;
  font-size: 0.95rem;
}

.auth-footer-text a {
  color: #3e72ae;
  font-weight: 600;
  text-decoration: none;
}

.auth-footer-text a:hover {
  text-decoration: underline;
}

.filter-intro {
  margin-bottom: 1.25rem;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, rgba(62, 114, 174, 0.12), rgba(144, 163, 205, 0.08));
  border-radius: 14px;
}

.filter-intro-text {
  margin: 0;
  color: #304563;
  font-size: 0.95rem;
  font-weight: 500;
}

}

.filter-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.filter-sticky {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.filter-sidebar-card {
  box-shadow: 0 12px 30px rgba(30, 58, 104, 0.08);
  border: 1px solid rgba(62, 114, 174, 0.18);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.filter-scroll-area {
  flex: 1;
}


.active-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0.85rem;
  background: #eaf1fc;
  border-radius: 14px;
  border: 1px solid rgba(49, 90, 137, 0.12);
}

.active-filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  min-height: 32px;
}

.active-filter-bar .active-filter-empty {
  color: #51627c;
  font-size: 0.9rem;
  opacity: 0.85;
}

.active-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  background: #ffffff;
  border-radius: 999px;
  border: 1px solid rgba(62, 114, 174, 0.24);
  font-size: 0.85rem;
  color: #1f3656;
  box-shadow: 0 3px 10px rgba(49, 90, 137, 0.12);
}

.active-filter-pill[data-type="mine"] {
  background: #315a89;
  color: #ffffff;
  border-color: #315a89;
  box-shadow: 0 3px 10px rgba(49, 90, 137, 0.3);
}

.active-filter-pill[data-type="watching"],
.active-filter-pill--watching {
  background: #f08a24;
  color: #ffffff;
  border-color: #f08a24;
  box-shadow: 0 3px 10px rgba(240, 138, 36, 0.3);
}

.active-filter-pill-remove {
  background: transparent;
  border: 0;
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
}

.active-filter-pill-remove i {
  font-size: 0.75rem;
}

.active-filter-pill-remove:hover {
  opacity: 0.75;
}

.active-filter-clear {
  color: #315a89;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.active-filter-clear[disabled],
.active-filter-clear.is-disabled {
  pointer-events: none;
  opacity: 0.35;
}

.active-filter-clear:not([disabled]):hover,
.active-filter-clear:not([disabled]):focus-visible {
  opacity: 1;
  text-decoration: none;
}

.signup-form .form-label {
  font-weight: 600;
  color: #1f3656;
}

.auth-utility-row {
  gap: 0.75rem;
}

.signup-role-grid {
  display: grid;
  gap: 0.75rem;
}

.signup-checkbox-grid {
  display: grid;
  gap: 0.75rem 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  padding: 1rem 1.25rem;
  background: rgba(62, 114, 174, 0.05);
  border-radius: 16px;
  max-height: 280px;
  overflow-y: auto;
}

.signup-checkbox-grid .form-check {
  margin-bottom: 0;
}

.signup-checkbox-grid::-webkit-scrollbar {
  width: 6px;
}

.signup-checkbox-grid::-webkit-scrollbar-thumb {
  background: rgba(62, 114, 174, 0.35);
  border-radius: 999px;
}

@media (max-width: 768px) {
  .how-it-works-title {
    font-size: 2rem;
  }

  .how-it-works-subtitle {
    font-size: 1rem;
  }

  .step-card {
    padding: 1.5rem;
  }

  .how-it-works-container {
    padding: 0 1.25rem;
  }

  .how-it-works-panel {
    padding: 2rem;
    border-radius: 20px;
  }

  .community-highlight-title {
    font-size: 1.9rem;
  }

  .community-highlight-grid {
    gap: 1.5rem;
  }

  .community-highlight-card {
    padding: 1.75rem;
  }

  .auth-card--stacked {
    padding: 2.5rem 2rem;
  }

  .signup-card {
    padding: 2.5rem 2rem;
  }

  .signup-checkbox-grid {
    max-height: 220px;
    padding: 0.75rem 1rem;
  }
}

#searchBox {
    width: 100%;
    max-width: 400px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
}

#searchBox:focus {
    border-color: #6B8AC2
}

/* Scoped chatbot styling */
#chat-form {
  max-width: 600px;
  margin: 0 auto;
}

#chat-form .input-group {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  overflow: hidden;
}

#chat-form .form-control.bigInputBox {
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 0;
  outline: none;
}

#chat-form .btn {
  border-radius: 0;
  padding: 0.75rem 1.25rem;
}

#response-box.chatbot-response-box {
  max-width: 600px;
  margin: 1rem auto;
  font-family: var(--font-body);
  font-size: 0.95rem;
  min-height: 100px;
  background-color: #f8f9fa;
  border-left: 5px solid #0d6efd; /* Bootstrap Primary */
}


.icon-circle {  
    color: #315a89;
  }
.categories {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.category {
    padding: 10px 15px;
    border: 1px solid #007bff;
    background-color: #f8f9fa;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.category:hover, .category.active {
    background-color: #007bff;
    color: white;
}

.quick-filter{
    opacity: 0.5;
}

.quick-filter:hover {
    cursor: pointer;
    opacity: 0.7;
}

.active-quick-filter{
    
    opacity: 1;


}

.btn-large{
    display: block;
    width: 90%;
    height: 80%;
    font-size: 36px;
}

.bigInputBox{
    height: 80px;
    font-size: 24px;
}
.menu-user-name{
  color: #202124;
}


#site_msg_container {
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 5px;
  color: white; /* Text color */
}
/* this is the message box tat will show when a user needs to validate email or has a bad login*/
#site_msg_container {
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 5px;
  font-family: var(--font-body);
  font-size: 16px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Slight shadow for better visibility */
  max-width: 600px; /* To make sure the message container doesn't get too wide */
  margin-left: auto;
  margin-right: auto; /* Center the container horizontally */
}

#site_msg_container.danger {
  background-color: #f44336; /* Red for error */
}

#site_msg_container.warning {
  background-color: #ff9800; /* Orange for warning */
}

#site_msg_container.success {
  background-color: #4caf50; /* Green for success */
}

#logout-btn{
  background-color: #F1F3F4;
  color:#9AA0A6;
  border: 1px solid  #F1F3F4;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#business-login-link{
  background-color: #202124;
  color: #D2E3FC;
  border: 1px solid #F1F3F4;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#SignUpButton-old{
  background-color: #202124;
  color: #D2E3FC;
  border: 1px solid #F1F3F4;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#google-login-btn {
  background-color: #202124;
  color:#D2E3FC;
  border: 1px solid #F1F3F4;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#google-login-btn i.fab.fa-google {
  margin-right: 8px;
}

.pe-lg-5.d-flex.flex-row.align-items-center.ai-style-change-2 {
  padding: 0px;
}

.searchResultsContainer {
    text-align: center;
    font-size: 24px;
    margin: 1px auto;
    padding: 1px;
    background-color: #FFFFFF;
    border-top-left-radius: 0%;
    border-top-right-radius: 0%;
}

.results {
    list-style: none;
    padding: 0;
}

.result-item {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.result-item:last-child {
    border-bottom: none;
}

.result-item:hover {
    background-color: #f1f1f1;
}

  /* BUSINESS LISTING */

.list-item {
  display: flex;
  align-items: center;
  padding: 0px;
  border-radius:  0.85rem;
  background: #fff;
  border: 1px solid #e5e5e5; /* Thin grey border */
 
  border-radius: 12px; /* Optional: Rounds the corners */
  /*box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);*/
  }
  
  .list-item .title-container {
   
    justify-content: space-between;
    align-items: center;
  }

  .title-container .title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}
  
  .list-item .title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1c3560;
    margin: 0; /* Reset default margins */
  }

  .rating {
    font-size: 1.2rem;
    font-weight: bold;
    color: #005a8c;
}

.rating_votes {
  font-size: 0.9rem;
  color: #666;
}
  
  .rating-review-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 5px 0;
    font-size: 2.2rem;
    font-weight: bold;
    color: #ffcc00; /* Yellow for stars */
    text-align: center;
  }

  /* Review stars on the single business page*/
  .business-page-review-star{
    color: #ffcc00;
  }

  .business-page-business-name{

        color: rgb(45, 46, 47); /* Dark gray */
        font-size: 48px;
        font-weight: 600;
        font-family: var(--font-heading);
        text-align: start;
        line-height: 56px;
        margin: 0px;
        padding: 0px;
        display: inline;
        position: static;
        width: auto;
        height: auto;
  }

  .suggested-business-listing-title{

    color: rgb(45, 46, 47); /* Dark gray */
    font-size: 24px;
    font-weight: 600;
    font-family: var(--font-heading);
    text-align: start;
    line-height: 56px;
    margin: 0px;
    margin-bottom: 1px;
    padding: 0px;
    display: block;
    position: static;
    width: auto;
    height: auto;
  }

.rating-base-stars{
    color: rgb(204, 204, 204); 
    display: inline-block;
}

.rating-gold-stars{
    color: rgb(255, 204, 0); 
    position: absolute; 
    top: 0px; 
    left: 0px; 
    overflow: hidden; 
    white-space: nowrap;
}

  
  .business-page-business-description{

    display: block;
    position: static;


    margin: 0px 0px 12px;
    padding: 0px;
    border: 0px none rgb(240, 240, 240);
    background-color: rgba(0, 0, 0, 0); /* Transparent background */
    color: rgb(0, 0, 0);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    text-align: start;
    box-shadow: none;
    border-radius: 0px;

}


.business-page-categories {
    display: flex; /* Use flexbox to align forms in a row */
    flex-wrap: wrap; /* Wrap to the next line if needed */
    gap: 10px; /* Space between categories */
  }

  /* Styles for Suggest a Business section on the single Business Page*/

  .suggestedBusinessItem {
    display: flex;
    align-items: center; /* Aligns items vertically */
    margin-bottom: 10px; /* Adds spacing between items */
    padding: 10px;
    border-bottom: 1px solid #ddd; /* Optional: Adds a subtle separator */
}

.suggestedBusinessItemLogo img {
    max-width: 100%; /* Ensures image is responsive */
    height: auto; /* Maintains aspect ratio */
    display: block;
}

.suggestedBusinessItem .col-md-8 {
    flex: 0 0 120px; /* Adjust width of image container */
    max-width: 120px;
    text-align: center; /* Centers the image */
}

.suggestedBusinessItem .col-md-4 {
    flex-grow: 1; /* Allows text section to take the remaining space */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Aligns text vertically */
    padding-left: 10px; /* Space between image and text */
}

.filter-kicker {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  font-weight: 600;
  color: #5b6d8d;
}

.filter-title {
  font-weight: 600;
  color: #1f3656;
}

.business-page-section {
  background: #f5f7fb;
  min-height: 100vh;
}

.business-suggest-body {
  background: #f5f7fb;
}

.business-suggest-section {
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
}

.business-suggest-card {
  background: #ffffff;
  border: 1px solid #e2eaf6;
  border-radius: 24px;
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(34, 49, 94, 0.08);
}

.business-suggest-form .form-floating + .form-floating {
  margin-top: 1rem;
}

.suggest-fieldset {
  background: #f8faff;
  border: 1px solid #e0e8f5;
  border-radius: 16px;
  padding: 1rem 1.25rem;
}

.fieldset-label {
  font-weight: 600;
  color: #1f3656;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.5rem 1rem;
}

.business-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: #1f3656;
}

.business-checkbox input {
  width: 1rem;
  height: 1rem;
}

@media (max-width: 576px) {
  .business-suggest-card {
    padding: 1.5rem;
  }
}

.suggestedBusinessItemTitle a {
    font-weight: bold;
    text-decoration: none;
    color: #005a8c;
}

.suggestedBusinessItemRating {
    font-size: 0.9rem;
    color: #666;
}

/*End of Suggest a business on the Single Business Page*/


/* scrollable  */
.scrollable-checkbox-container {
  max-height: 140px; /* Adjust as needed to fit 5 checkboxes */
  overflow-y: auto;
  border: 1px solid #ddd; /* Light border for distinction */
  padding: 8px;
  border-radius: 5px;
  background-color: #f9f9f9; /* Light background for better visibility */
}
/* Make the items stick so they do not scroll down when he user scrolls*/

  .business-page-disabilities {
    display: flex; /* Use flexbox to align forms in a row */
    flex-wrap: wrap; /* Wrap to the next line if needed */
    gap: 10px; /* Space between categories */
  }
/* Styles for the tags for business category and disabilities.*/
.tag {
    display: inline-block;
    background-color: #f8f9fa; /* Soft grey background */
    border: 1px solid #d6d6d6; /* Light border */
    color: #333; /* Darker text */
    font-size: 0.875rem; /* Smaller font */
    padding: 5px 10px;
    margin: 5px;
    border-radius: 15px; /* Rounded corners */
    cursor: pointer;
  }
/* makes an item not move when the page scrolls */
  .sticky {
    position: sticky !important;
    top: 200px; /* Adjust to control how far from the top it sticks */
  }

  .tag-form {
    display: inline-block; /* Ensures forms don't take full width */
    margin: 0; /* Remove default margin */
    padding: 0; /* Remove default padding */
  }

  .tag-form button {
    all: unset; /* Reset button styles */
    display: inline-block;
    background-color: #f8f9fa;
    border: 1px solid #d6d6d6;
    color: #333;
    font-size: 0.875rem;
    padding: 5px 10px;
    margin: 5px;
    border-radius: 15px;
    cursor: pointer;
  }

  .tag-form button:hover {
    background-color: #e0e0e0; /* Slightly darker on hover */
  }

  /* Styles for the next sibling */
  .business-page-button{
    display: inline-flex;
    position: relative;
    width: 120.891px;
    height: 44px;
    margin: 0px;
    padding: 10px 16px;
    border: 1px solid rgb(200, 201, 202);
    background-color: rgba(107, 109, 111, 0.03);
  }

/* Testimonial Card Styles */
.testimonial-item {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center; /* Centers the review card horizontally */
}
.testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centers the content vertically */
}
.testimonial-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
}
/* review list items  */
/* Adjusting individual review cards */
.review-item-container {
    background-color: #fff;
    padding: 20px;
    margin: 15px 0;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%; /* Full width for the review card */
    max-width: 800px; /* Optional: max width for consistent sizing */
  }

/* Ensure the reviews are spaced out */
.business-reviews {
    display: flex;
    justify-content: center; /* Center the reviews */
    width: 100%;
    padding: 20px 0; /* Add spacing between reviews */
  }
/* Carousel Button Styling for the reviews on the listing page */

.carousel-container {
    position: relative; /* Allows absolute positioning for the arrows */
    display: flex;
    flex-direction: column; /* Stack the arrows above the reviews */
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 30px 0; /* Add vertical padding to create space for the arrows */
  }

  /* Carousel Controls */
.carousel-controls {
    display: flex;
    justify-content: space-between; /* Place arrows on opposite sides */
    position: relative;
    top: -30px; /* Move arrows above the review cards */
    margin-bottom: 15px; /* Space between arrows and review cards */
    z-index: 10;
}




/* Arrow buttons */
.carousel-control-prev, .carousel-control-next {
    
    color: #6B8AC2;
    /*
    background-color: rgba(255, 255, 255, 0.7);  
    border: none;
    border-radius: 50%;
    padding: 10px;
    font-size: 2rem;
    transition: background-color 0.3s ease;
    */
}
  


.carousel-control-prev:hover, .carousel-control-next:hover {
    color: #025A8C; /* Change color on hover */
}


/* Position the left and right arrows */
.carousel-control-prev {
    left: 10px; /* Place left arrow on the left side */
  }
  
  .carousel-control-next {
    right: 10px; /* Place right arrow on the right side */
  }
  

  .carousel-control-prev i, .carousel-control-next i {
    font-size: 1.5rem;
}
.carousel-control-prev i:hover, .carousel-control-next i:hover {
    color: #025A8C; /* Change icon color on hover */
}

/* Adjust the review carousel */
#reviews-carousel .carousel-inner {
    position: relative;
    padding-top: 20px;
}

.review_rating {
  font-size: 1.2rem;
  
}

.review_would_recommend {
  font-size: 1rem;
  color: #28a745; /* Green for recommendation */
  display: none;
}

.review_would_recommend[data-recommend="yes"] .would_recommend_review {
  font-weight: bold;
  color: #4CAF50 ;
}

.review_would_recommend[data-recommend="no"] .would_recommend_review {
  font-weight: bold;
  color: #D9534F ;
}
.review_title {
  font-size: 1.5rem;
  font-weight: bold;
}

.review_description {
  
  font-size: 1rem;
  margin-top: 5px;
  color: #e6e6e6;

  display: block; /* Ensures it behaves like a block element */
  text-align: left; /* Aligns text to the left */
  margin-right: auto; /* Pushes it to the left in a flex container */
 
}

.review_business_reply{
  font-size: 1rem;
  margin-top: 5px;
  color: #e6e6e6;
  background-color: #ffffff;

  display: block; /* Ensures it behaves like a block element */
  text-align: left; /* Aligns text to the left */
  margin-right: auto; /* Pushes it to the left in a flex container */
}

.review_disability_name, .review_modify_date {
  font-size: 0.9rem;
  color: #777;
}

.review_modify_date {
  margin-top: 5px;
}

.business-reviews .col-3, .business-reviews .col-6, .business-reviews .col-2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.business-reviews .col-3, .business-reviews .col-2 {
  text-align: center;
}

.business-reviews .col-6 {
  text-align: left;
  padding-left: 10px;
}

@media (max-width: 768px) {
  .business-reviews {
    flex-direction: column;
  }

  .review_item-container {
    padding: 15px;
  }

  .col-3, .col-6, .col-2 {
    width: 100%;
    margin-bottom: 10px;
  }
}

/* End of list item review */

  .stars {
    display: inline-block;
    position: relative;
    font-size: 1.2rem;
    color: #ccc; /* Default star color */
}

.stars::before {
    content: "★★★★★"; /* Five solid stars */
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    overflow: hidden;
    white-space: nowrap;
    color: #ffcc00; /* Gold color for filled stars */
}

  .rating-review-container .rating{
  
  
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.6rem;
    /*background-color: #fffcd8; //*/
    border-radius: 4px;
    color: #2e4a73;
    font-size: 1rem;
    font-weight: bold;
    
  }
  
  .rating-review-container .rating_votes{
    
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.6rem;
  
    border-radius: 4px;
    color: #2e4a73;
    font-size: 0.8rem;
    font-weight: lighter
  }
  
  .rating-review-container .btn {
    background-color: #0073bb;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  .rating-review-container .btn:hover {
    background-color: #005a8c;
    transform: translateY(-2px);
  }
  
  .image-description-container {
    
    margin: 10px 0;
    gap: 1rem; /* Space between image and description */
    align-items: flex-start;
  }



  /*Review Form */
  
    .form-close-icon{
      position: absolute;
      right: 10px;
    } 

    .star-rating {
        direction: rtl;
        display: inline-block;
        cursor: pointer;
    }

    .star-rating input {
        display: none;
    }

    .star-rating label {
        color: #ddd;
        font-size: 24px;
        padding: 0 2px;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .star-rating label:hover,
    .star-rating label:hover~label,
    .star-rating input:checked~label {
        color: #ffc107;
    }

    
.big-checkbox{
  width: 20px; 
  height: 20px;
}

input[type='radio'] { 
  box-sizing: border-box;
  height: 16px;
  width: 16px;
  border: 0.8px solid #9FABBE;
  border-radius: 100%;
  cursor: pointer;
  overflow: visible;
  background: #ffffff;
  
}

input[type=radio]:checked {
  box-sizing: border-box;
  height: 17px;
  width: 17px;
  
  border-radius: 100%;
  cursor: pointer;
  overflow: visible;
  background: #315a89;
}

.hr-review-form{
  border: 1px dotted #315a89;
  margin-top: 1px;
  margin-bottom: 10px;

}

.review-container{
  /*initally hide the reviews*/ 
  display: none;
}







.list-biz-item {
    margin-bottom: 20px;
    padding: 10px;
  }
  
/* Left Column Styling */
.listing-left-column {
    padding: 0; /* Remove padding */
    text-align: center;
    border-right: 1px solid #ddd;
    height: 100%; /* Ensure the column fills the row height */
  }
  
    .biz_image {
    display: flex; /* Enable flexbox layout */
    justify-content: center; /* Centers image horizontally */
    align-items: center; /* Centers image vertically */
    max-width: 100%; /* Ensures the image does not exceed its container */
    height: 100%; /* Makes the container fill the available height */
    overflow: hidden; /* Prevents overflow */
}

.biz_image img {
    max-width: 100%; /* Ensures image scales within its container */
    height: auto; /* Maintains aspect ratio */
    display: block; /* Removes extra space below the image */
    object-fit: contain; /* Ensures the full image is displayed without cropping */
    border-radius: 8px; /* Optional: adds rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: adds a shadow */
}

/*Style for items AI generates*/
.ai-result {
  background-color: #f9f7f7;
  color: #315a89;
  border: 1px dashed #6B8AC2;
}
  
  /* Center Column Styling */
  /* Center Column Styling */
.listing-center-column {
    padding: 15px;
    display: flex; /* Use flexbox to align items */
    flex-direction: column; /* Arrange items vertically by default */
  }
  
  /* Align location, website, and email horizontally */
  .listing-center-column .contact-info {
    display: flex; /* Align items horizontally */
    justify-content: space-between; /* Optional: space them out evenly */
    margin-bottom: 10px;
  }

  .title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
  }
  
  .businessCategoryItem {
    font-size: 1.1rem;
    color: #777;
    margin-bottom: 10px;
  }
  
  .description {
    font-size: 1rem;
    color: #315a89;
    margin-bottom: 10px;
  }
  
  .biz_location,
  .biz_website,
  .biz_email {
    font-size: 0.9rem;
    color: #007bff;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
  }
  
  .biz_location:hover,
  .biz_website:hover,
  .biz_email:hover {
    text-decoration: underline;
  }
  
  .review_show_hide {
    font-size: 0.9rem;
    color: #e6e6e6;
    margin-top: 10px;
    display: inline; /* Prevents the span from taking up extra space */
    
  }

  .review_show_hide i, 
  .review_show_hide:hover { 
    cursor: pointer; /* Changes cursor only when hovering over the icon or text */
  }
  /* Right Column Styling */
  .listing-right-column {
    padding: 15px;
    text-align: center;
  }
  
  .rating {
    font-size: 1.2rem;
    color: #f39c12;
    margin-bottom: 10px;
  }
  
  .rating_votes {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 10px;
  }
  
  .disabilityServices {
    font-size: 0.9rem;
    color: #e6e6e6;
    margin-bottom: 15px;
  }

  .btn-primary{
    background-color: #3E72AE;
    color: #F4F4F9;
    border-radius: 5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    text-align: center;
  }

  .btn-primary:hover{
    background-color: #005a8c;
    color: #F4F4F9;
    border-radius: 5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    text-align: center;
  }
  
  .btn-review {
    font-size: 1rem;
    background-color: #28a745;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-top: 15px;
  }
  
  .btn-review:hover {
    background-color: #218838;
  }
  
  .subtle {
    font-size: 1rem;
    margin-top: 5px;
    color: #3f577d;
  }


  .text-primary {
    color: #007bff;
  }
  
  .text-primary:hover {
    color: #0056b3;
  }

  .card {
    border-radius: 12px;
  }
  
  .card.shadow-sm {
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  }
  
  .card-body {
    padding: 1.5rem;
  }
  
  .card-body h5 {
    font-size: 1.5rem;
    color: #333;
    font-weight: 500;
  }

.card-title {
    font-size: 1.75rem;
    color: #1c3560;
    font-weight: bold;
  }
  
  .card-body {
    padding: 1.5rem;
  }
  
  .card-body p {
    font-size: 1.1rem;
    color: #333;
  }
  
  .list-group-item {
    font-size: 1rem;
    background-color: #ffffff;
    border: 1px solid #ffffff;
    color: #42709e;
    padding: 6px 10px;
    border-radius: 4px;
  }
  
  .list-group-item:hover {
    background-color: #eaeef3;
    border: #6583a6;
    
  }
  

  .mb-4 {
    margin-bottom: 1.5rem;
  }
  
  ul {
    padding-left: 20px;
  }
  
  ul.list-group {
    margin-bottom: 1rem;
  }
  
  .d-flex {
    display: flex;
  }
  
  .justify-content-between {
    justify-content: space-between;
  }
  
  .align-items-center {
    align-items: center;
  }
  


  /* Responsive Design */
  @media (max-width: 768px) {
    .listing-left-column,
    .listing-center-column,
    .listing-right-column {
      padding: 10px;
    }
  
    .title {
      font-size: 1.25rem;
    }
  
    .biz_image {
      max-width: 120px;
    }
  
    .btn-review {
      width: auto;
    }
  }

  
.filter-quick-links {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.filter-quick-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(62, 114, 174, 0.2);
  background: rgba(51, 88, 137, 0.06);
  color: #1f3656;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(30, 58, 104, 0.1);
}

.filter-quick-link i {
  font-size: 1.1rem;
  color: #315a89;
  background: rgba(49, 90, 137, 0.12);
  border-radius: 12px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.filter-quick-link:hover {
  background: rgba(49, 90, 137, 0.12);
  border-color: rgba(49, 90, 137, 0.35);
  box-shadow: 0 6px 18px rgba(30, 58, 104, 0.16);
  text-decoration: none;
}

.filter-quick-link span {
  flex: 1;
}

@media (max-width: 576px) {
  .filter-quick-links {
    grid-template-columns: 1fr;
  }
}


.filter-scroll-area {
  flex: 1;
}

.community-post-section {
  background: transparent;
  position: relative;
  padding-top: 1.5rem;
  padding-bottom: 2.5rem;
}


.site-footer {
  margin-top: 4rem;
  background: #3C6EA7 !important;
  color: #ffffff;
  text-align: center;
  font-size: 0.95rem;
  width: 100%;
}

.site-footer__top-bar {
  height: 14px;
  background: #3C6EA7;
  display: block;
}

.site-footer__content {
  padding: 1.75rem 1rem;
  background: #3C6EA7;
}

.site-footer__nav {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
  background: #3C6EA7;
}

.site-footer__link,
.site-footer__link:visited,
.site-footer__link:hover,
.site-footer__link:focus-visible {
  color: #f2f5fb;
}

.site-footer__link {
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.site-footer__link:hover,
.site-footer__link:focus-visible {
  text-decoration: underline;
}

.site-footer__copy {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(243, 247, 255, 0.9);
}

@media (max-width: 576px) {
  .site-footer__content {
    padding: 1.5rem 0.75rem;
  }

  .site-footer__nav {
    gap: 1.5rem;
  }
}

/* Account profile */
.profile-section {
  background: #f8f9fa;
  min-height: 100vh;
}

.profile-card {
  padding: 2rem;
}

.profile-role-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.profile-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.75rem 1.25rem;
  padding: 1rem;
  border: 1px solid #e2e6f0;
  border-radius: 12px;
  background: #fff;
  max-height: 360px;
  overflow-y: auto;
}

.profile-checkbox-grid .form-check {
  margin: 0;
}

.profile-form .form-text {
  color: #6e7fa2;
}

/* Dashboard */
.dashboard-body {
  background: #f5f7fb;
}

.dashboard-page {
  padding: 2.5rem 1rem 3rem;
}

.dashboard-grid {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.dashboard-sidebar {
  width: 280px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 120px;
  align-self: flex-start;
  margin-top: 1rem;
}

.dashboard-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1rem;
}

.dashboard-card {
  background: #ffffff;
  border: 1px solid #e2eaf6;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 16px 40px rgba(16, 42, 67, 0.08);
}

.dashboard-card h1,
.dashboard-card h2 {
  margin: 0 0 0.35rem;
  color: #1f3656;
  font-weight: 700;
}

.quick-actions-card h2,
.dashboard-nav-card h2 {
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #5b6d8d;
}

.quick-action-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(62, 114, 174, 0.15);
  background: #f8faff;
  color: #1f3656;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: 0.75rem;
}

.quick-action-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(49, 90, 137, 0.2);
  text-decoration: none;
}

.quick-action-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #315a89;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.quick-action-title {
  margin: 0;
  font-weight: 600;
}

.dashboard-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 1rem;
}

.nav-link-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.75rem;
  border-radius: 12px;
  color: #4a5771;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-link-item i {
  width: 20px;
  text-align: center;
}

.nav-link-item:hover,
.nav-link-item.is-active {
  background: #eaf1fc;
  color: #1f3656;
}

.dashboard-welcome {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.welcome-kicker {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  font-size: 0.8rem;
  color: #5b6d8d;
  margin: 0 0 0.25rem;
}

.welcome-subtitle {
  margin: 0;
  color: #5b6d8d;
  font-size: 1rem;
}

.dashboard-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.dashboard-stat-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.25rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e2eaf6;
  box-shadow: 0 12px 24px rgba(18, 42, 76, 0.08);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dashboard-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(18, 42, 76, 0.15);
}

.stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
}

.stat-icon--primary {
  background: linear-gradient(135deg, #315a89, #4d7db3);
}

.stat-icon--warning {
  background: linear-gradient(135deg, #f08a24, #f3a155);
}

.stat-icon--accent {
  background: linear-gradient(135deg, #7a5be8, #9d7eff);
}

.stat-label {
  margin: 0;
  font-size: 0.9rem;
  color: #5b6d8d;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-value {
  margin: 0.1rem 0 0;
  font-size: 2rem;
  font-weight: 700;
  color: #1f3656;
}

.recent-activity-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.recent-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.recent-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: #5b6d8d;
  font-size: 0.85rem;
}

.recent-post-card {
  border: 1px solid #e7eefb;
  border-radius: 18px;
  padding: 1.25rem;
  background: #fdfdff;
}

.recent-post-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.recent-post-header h3 {
  margin: 0;
  color: #1f3656;
  font-size: 1.1rem;
}

.recent-post-body {
  margin: 0 0 1rem;
  color: #42526e;
  line-height: 1.5;
  word-break: break-word;
}

.recent-post-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: #5b6d8d;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.status-pill--success {
  background: rgba(52, 168, 83, 0.15);
  color: #2d814a;
}

.status-pill--pending {
  background: rgba(240, 138, 36, 0.12);
  color: #b66312;
}

.empty-state {
  text-align: center;
}

.empty-state h3 {
  font-weight: 700;
  color: #1f3656;
}

.dashboard-alert {
  margin: 0;
}

.disability-insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.disability-insight-card {
  border: 1px solid #e4ebfb;
  border-radius: 16px;
  padding: 1rem 1.1rem;
  background: #fafcff;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.disability-insight-header {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: flex-start;
}

.disability-insight-header h3 {
  margin: 0;
  font-size: 1rem;
  color: #1f3656;
}

.disability-insight-date {
  font-size: 0.85rem;
  color: #5b6d8d;
}

.disability-insight-body {
  margin: 0;
  color: #42526e;
  line-height: 1.45;
  min-height: 3.5rem;
}

.disability-insight-actions a {
  font-weight: 600;
  color: #315a89;
  text-decoration: none;
}

.disability-insight-actions a:hover {
  text-decoration: underline;
}

@media (max-width: 992px) {
  .dashboard-grid {
    flex-direction: column;
  }

  .dashboard-sidebar {
    width: 100%;
    position: static;
    margin-top: 0;
  }
}

@media (max-width: 576px) {
  .dashboard-card {
    padding: 1.25rem;
  }

  .dashboard-stats-grid {
    grid-template-columns: 1fr;
  }

  .recent-post-card {
    padding: 1rem;
  }
}

.business-filter-layout {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  width: 100%;
}

.business-filter-layout__column {
  display: flex;
  flex-direction: column;
}

.business-filter-layout__column--location {
  flex: 0 0 320px;
  max-width: 360px;
  width: 100%;
}

.business-filter-layout__column--filters {
  flex: 1 1 420px;
  min-width: 280px;
}

.business-filter-location-card {
  background: #fff;
  border: 1px solid #e1e8f0;
  border-radius: 20px;
  padding: 1.25rem;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

.business-filter-location-card .filter-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  border: 0;
}

.business-filter-location-card__title {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.filter-group-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  color: #7a88a0;
  font-weight: 600;
}

.business-filter-location-card .filter-group-title {
  font-size: 1.2rem;
  color: #0f1f3d;
  font-weight: 700;
}

.business-filter-location-card .filter-group-count {
  font-size: 0.9rem;
  font-weight: 600;
  color: #4f5d75;
}

.business-filter-location-card .filter-group-body {
  display: block !important;
  padding: 0;
  margin-top: 0.75rem;
}

.filter-text-input--with-icon {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid #cfd8ea;
  border-radius: 14px;
  padding: 0.25rem 0.5rem 0.25rem 0.85rem;
  background: #f8faff;
}

.filter-text-input--with-icon input {
  border: 0;
  background: transparent;
  padding-left: 0.25rem;
}

.filter-text-input--with-icon i {
  color: #2d5be3;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .business-filter-layout__column--location,
  .business-filter-layout__column--filters {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .business-filter-location-card {
    padding: 1rem;
  }
}
