/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
.container-list {
  width: 100%;
  max-width: 100%;
  padding: 20px;
  box-sizing: border-box;
  overflow-x: hidden;
  /* Flexbox method */
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center; /* Optional: Centers vertically */
}

.horizontal-list {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
  gap: 40px; /* spacing between titles */
}

.horizontal-list > li {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.horizontal-list > li > span {
  margin-bottom: 8px;
}

.vertical-items {
  list-style-type: disc;
  padding-left: 20px;
  margin-top: 0;
}

.list_heading {
    margin-bottom: 29px;
}

.list_heading {
    font-family: Roboto, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 26px;
    text-transform: uppercase;
    line-height: 32px;
    color: #000;

}
/* Responsive: Stack horizontally-aligned titles on smaller screens */
@media (max-width: 600px) {
  .horizontal-list {
    flex-direction: column;
    gap: 20px;
  }

  .horizontal-list > li {
    align-items: flex-start; /* align left on mobile */
  }
}



/* Wrapper for input with icon */
.has-search {
  position: relative;
}

.has-search .form-control {
  padding-left: 2.5rem; /* space for the icon */
  height: 40px; /* optional: standardize input height */
}


/* Magnifying glass icon styling */
.has-search .form-control-feedback {
  background: none;
  border: none;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
  cursor: pointer;
  font-size: 1rem;
  padding: 0;
}
