/**
 * 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;
}

/* Comercial Data Table */

.example-page{max-width:1100px;margin:0 auto;padding:24px 16px 40px;color:#1a1a1a}
.example-section{margin-bottom:48px}
.example-section h2{font-size:1.4rem;margin-bottom:14px;border-bottom:2px solid #e5e7eb;padding-bottom:6px}
.specs-table{width:100%;border-collapse:collapse;table-layout:fixed;background:#fff;border:1px solid #e5e7eb;border-radius:10px;overflow:hidden}
.specs-table th,.specs-table td{padding:14px 16px;border-bottom:1px solid #e5e7eb;vertical-align:top;word-break:break-word}
.specs-table thead th{background:#f9fafb;color: #e4002b;font-weight:600;text-align:left}
.specs-table tbody tr:last-child td{border-bottom:none}
.specs-table tbody td:first-child{width:32%;font-weight:600;color:#374151}
@media (max-width:1024px){.specs-table{display:block;overflow-x:auto}}


@media (max-width:640px){

  .specs-table.is-mobile-transform {
    border: none;
  }

  .specs-table.is-mobile-transform,
  .specs-table.is-mobile-transform thead,
  .specs-table.is-mobile-transform tbody,
  .specs-table.is-mobile-transform tr,
  .specs-table.is-mobile-transform td {
    display: block;
    width: 100%;
  }

  /* Hide header ONLY for transformed table */
  .specs-table.is-mobile-transform thead {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  .specs-table.is-mobile-transform tr {
    margin-bottom: 16px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fff;
    padding: 8px 0;
  }

  .specs-table.is-mobile-transform td {
    display: block;
    width: 100%;
    padding: 10px 16px;
    border: none;
  }

  /* Label from THEAD */
  .specs-table.is-mobile-transform td::before {
    content: attr(data-title);
    display: block;
    font-size: .75rem;
    font-weight: 600;
    color: #e4002b;
    margin-bottom: 4px;
    text-transform: uppercase;
  }

.specs-table tbody td:first-child {
  width: auto;
}

.specs-table.is-mobile-transform tbody td:first-child {
  width: 100%;
}
}
