.collection-item-6 {
    width: 100%;
    max-width: 16.75rem;
    min-width: auto;
    border: 0.0625rem solid #10215c;
    border-radius: 0.4375rem;
    margin-top: 0;
    margin-bottom: 3.1125rem;
    margin-right: 0;
    padding: 1.1875rem 1.25rem 0.6875rem;
    position: relative;
}

.heading-3 {
    width: 100%;
    color: #10215c;
    text-align: center;
    margin-top: 0;
    font-family: Gotham, sans-serif;
    font-size: 1.8em;
    font-weight: 700;
    line-height: 31px;
}
.columns-2 {
    margin-bottom: 2.4375rem;
    position: relative;
}

.column-7 {
    color: #747474;
}
.w-col-6 {
    width: 50%;
}
.w-col {
    float: left;
    width: 100%;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px;
    position: relative;
}

.list-4 {
    padding-left: 0;
    line-height: 1.875rem;
    list-style-type: none;
}

.column-8 {
    height: 5.3125rem;
}

.pricing-text {
    width: auto;
    color: #7a7a7a;
    text-align: right;
    margin-top: 1.5625rem;
    padding-top: 0;
    font-family: Gotham, sans-serif;
    font-size: .8rem;
    font-weight: 400;
    position: absolute;
    top: auto;
    bottom: 0%;
    left: 0;
    right: 0.625rem;
}


.search-county-zipcode-form input[type="submit"] {
    background-color: #10215c;
    border: 0;
    color: #fff;
    font-size: 16px;
    padding: 0;
    margin-top: 10px;
    padding: 5px 20px;
}

.dumpster-search-results {
    margin-top:20px;
    flex-wrap: wrap;
    justify-content: space-around;
    display: flex;
}

.list-4 {
    padding-left: 0;
    line-height: 1.875rem;
    list-style-type: none;
}

.dumpster-container { 
    width: 100%; 
    margin-top:20px;
} 
  
.dumpster-container h2 { 
    color: #1d2d3f; 
    font-size: 32px; 
    padding: 15px 0 20px 0; 
    text-align: left; 
    margin-left: 10%; 
} 
  
.dumpster-container h3 { 
    margin: 0% 0 2% 10%; 
    font-size: 24px; 
    color: #0C356A; 
} 
  
.price-row { 
    width: 100%; 
    margin: auto; 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    grid-gap: 30px; 
} 
  
.price-col { 
    transition: box-shadow .5s; 
    transition: transform; 
    background: #f7f7f7; 
    padding: 10% 10%; 
    border-radius: 10px; 
    color: #10215C;
    text-align: center; 
} 
  
hr { 
    padding: -10% !important; 
} 
  
.price-col:hover { 
    box-shadow: 0 0 20px rgba(9, 157, 194, 0.2); 
    transform: scale(1.04); 
} 
  
.price-col p { 
    font-size: 22px; 
} 
  
.price-col h3 { 
    color: whitesmoke; 
    font-size: 44px; 
    margin: 15px 0 20px; 
    font-weight: 500; 
} 
  
.price-col h3 span { 
    font-size: 25px; 
} 
  
.price-col ul { 
    text-align: left; 
    margin: 10px 0 30px 0; 
    color: #10215C; 
    list-style: none; 
} 
  
.price-col ul li { 
    border-bottom: 2px solid #ddd; 
    font-size: 20px; 
    padding: 8px; 
    color:#7A7A7A;
    text-align: left; 
} 
  
.price-col .blue-button { 
    background-color: #FF6720; 
    border: 1px solid white; 
    border-radius: 5px; 
    margin: 20px 0 0 0; 
    color: #fff;
    padding: 10px 25px; 
    text-align: center; 
    text-decoration: none; 
    font-size: 18px; 
} 
  
.price-col .blue-button:hover { 
    background: #10215C; 
    color: white; 
} 
  
.price-col #best { 
    background: #272829 !important; 
} 
  
.price-col p { 
    font-size: 24px !important; 
    margin-bottom: 10px; 
    margin-top: -10px; 
} 
  
.price-col #prem { 
    color: gold !important; 
    text-shadow: 1px 1px gold; 
}

/* Base Table Styling */
.responsive-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #212529;
  background-color: #fff;
}

/* Headers & Cells */
.responsive-table th,
.responsive-table td {
  padding: 12px;
  vertical-align: middle;
  border: 1px solid #dee2e6;
}

.responsive-table th {
  background-color: #f8f9fa;
  font-weight: 600;
}

/* Zebra striping */
.responsive-table tr:nth-child(odd) {
  background-color: #f2f2f2;
}

/* Image */
.responsive-table img {
  max-width: 100px;
  height: auto;
  border-radius: 4px;
}

/* Custom Button */
.btn {
  display: inline-block;
  font-weight: 600;
  color: #fff;
  background-color: #10215c;
  text-align: center;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 0.25rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: #0d1b4e;
  text-decoration: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .responsive-table,
  .responsive-table thead,
  .responsive-table tbody,
  .responsive-table th,
  .responsive-table td,
  .responsive-table tr {
    display: block;
  }

  .responsive-table thead {
    display: none;
  }

  .responsive-table tr {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    padding: 10px;
    background-color: #fff;
  }

  .responsive-table td {
    border: none;
    position: relative;
    padding-left: 50%;
  }

  .responsive-table td::before {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 45%;
    white-space: nowrap;
    font-weight: bold;
    color: #495057;
    content: attr(data-label);
  }

  .responsive-table td img {
    max-width: 80px;
  }

  .btn {
    display: block;
    width: 100%;
    text-align: center;
  }

  /* Hide phone column on mobile */
  .responsive-table td[data-label="Phone"] {
    display: none;
  }
}
.table-responsive {
  width: 100%;
  overflow-x: auto;
}

.dumpster-container .table {
  width: 100%;
  border-collapse: collapse;
}

.dumpster-container .table td,
.dumpster-container .table th {
  padding: 12px;
  text-align: left;
  vertical-align: middle;
  border: 1px solid #dee2e6;
}

.dumpster-container .table img {
  max-width: 100px;
  height: auto;
}

/* Mobile styles */
@media screen and (max-width: 768px) {
  .dumpster-container .table thead {
    display: none;
  }

  .dumpster-container .table,
  .dumpster-container .table tbody,
  .dumpster-container .table tr,
  .dumpster-container .table td {
    display: block;
    width: 100%;
  }

  .dumpster-container .table tr {
    margin-bottom: 1rem;
    border-bottom: 2px solid #ccc;
  }

  .dumpster-container .table td {
    text-align: right;
    padding-left: 50%;
    position: relative;
    border: none;
    border-bottom: 1px solid #eee;
  }

  .dumpster-container .table td::before {
    content: attr(data-label);
    position: absolute;
    left: 1rem;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
    text-align: left;
    font-weight: bold;
    color: #333;
  }

  .dumpster-container .table .btn {
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
  }

  .dumpster-container .table .phone a {
    display: block;
    text-align: center;
  }
}


