<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Your CSS styles remain unchanged */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}
.header {
    background-color: #333;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}
.header .logo img {
    max-height: 50px;
}
.header .search-form input[type="text"] {
    padding: 5px;
    margin-right: 5px;
    border: none;
    border-radius: 3px;
}
.header .search-form input[type="submit"] {
    padding: 5px 10px;
    background-color: #ff6b6b;
    border: none;
    color: #fff;
    cursor: pointer;
    border-radius: 3px;
}
.header .header-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}
.header .header-links ul li {
    margin-left: 20px;
}
.header .header-links ul li a {
    color: #fff;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 3px;
    transition: background-color 0.3s;
}
.header .header-links ul li a:hover {
    background-color: #ff6b6b;
}
.breadcrumb {
    margin: 20px;
    font-size: 14px;
}
.breadcrumb a {
    text-decoration: none;
    color: #ff6b6b;
}
.breadcrumb span {
    margin: 0 5px;
    color: #666;
}
.model-container {
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    margin: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.model-container h2 {
    text-align: center;
    margin-bottom: 20px;
}
.related-models {
  display: flex;
  /* Prevent wrapping onto multiple lines */
  flex-wrap: nowrap;
  /* Add horizontal spacing between items */
  gap: 10px;
  /* If content exceeds screen width, allow horizontal scroll */
  overflow-x: auto;
  /* Optional: If you want them fully across the page with no margin on edges,
     remove default 'justify-content' or set to 'flex-start' */
  justify-content: flex-start;
}

.related-model {
  /* Fix each item's width (thumbnail style) */
  flex: 0 0 auto;
  width: 150px;
  margin: 10px 0;
  text-align: center;
  background-color: #f8f8f8;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Make the images shrink to fit within 150px cards */
.related-model img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}
@media screen and (max-width: 1200px) {
    .related-model {
        flex: 1 0 30%;
    }
}
@media screen and (max-width: 768px) {
    .related-model {
        flex: 1 0 45%;
    }
}
@media screen and (max-width: 480px) {
    .related-model {
        flex: 1 0 100%;
    }
}
/* Additional CSS as needed */</pre></body></html>