body {
  background: #f5edcf;
  font-family: Arial, sans-serif;
  margin: 0;
}

.container {
  max-width: 1200px;
  margin: 20px auto;
  padding: 0 15px;
  display: flex;
  justify-content: center;
}

.main-content {
  width: 100%;
  max-width: 800px;
  background: #f0e4ba;
  padding: 20px;
  border-radius: 8px;
  box-sizing: border-box;
}

h1 {
  font-size: 24px;
  margin-bottom: 10px;
}

h2 {
  font-size: 20px;
  margin-top: 25px;
  color: #333;
}

table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #000;
  margin-bottom: 20px;
}

table td, table th {
  border: 1px solid #000;
  padding: 10px;
  text-align: center;
}

ul.features {
  list-style: disc;
  padding-left: 20px;
  margin-top: 10px;
}

/* Responsive slider */
.slider-container {
  position: relative;
  width: 100%;
  height: auto;
  max-height: 392px;
  margin: 20px auto;
  overflow: hidden;
  border-radius: 10px;
  background: #f0e4ba;
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide img {
  width: 100%;
  max-height: 392px;
  object-fit: contain;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #f5edcf;
  border: none;
  font-size: 20px;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
  opacity: 0.85;
  border-radius: 4px;
}

.slider-btn:hover {
  opacity: 1;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.download-banner {
  background-color: #f3e9c6;
  border: 1px solid #d5c8a1;
  text-align: center;
  font-weight: bold;
  padding: 10px;
  font-size: 18px;
  margin: 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 5px;
  max-width: 100%;
  flex-wrap: wrap;
}
.download-banner img {
  width: 20px;
  height: 20px;
}
.download-banner a {
  text-decoration: none;
  color: black;
}

/* Rating stars */
.star {
  font-size: 24px;
  color: gray;
  cursor: pointer;
}
.star.selected,
.star.hovered {
  color: gold;
}

/* Related software */
.related-item {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  align-items: center;
}
.related-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
}

/* Mobile friendly adjustments */
@media (max-width: 768px) {
  h1 {
    font-size: 20px;
  }

  .slider-container {
    max-height: 250px;
  }

  .slide img {
    max-height: 250px;
  }

  .download-banner {
    flex-direction: column;
    font-size: 16px;
  }

.related .software-box {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.related .favicon-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  margin-right: 10px;
  border-radius: 3px;
}

.related .software-name {
  font-size: 14px;
  font-weight: normal;
  color: #333;
  display: inline-block;
  max-width: 80%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.download-banner {
  background-color: #f3e9c6;
  border: 1px solid #d5c8a1;
  text-align: center;
  font-weight: bold;
  padding: 10px;
  font-size: 18px;
  margin: 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 5px;
  max-width: 100%;
  position: relative;
}
.download-banner img {
  width: 20px;
  height: 20px;
}
.download-banner a {
  text-decoration: none;
  color: black;
}
.star-rating {
  display: inline-block;
  direction: rtl;
  font-size: 28px;
  unicode-bidi: bidi-override;
  cursor: pointer;
}

.star-rating span {
  display: inline-block;
  color: #ccc;
  transition: color 0.2s;
}

.star-rating span:hover,
.star-rating span:hover ~ span {
  color: gold;
}

.star-rating .selected,
.star-rating .selected ~ span {
  color: gold;
}
.star {
  font-size: 30px;
  color: #ccc;
  cursor: pointer;
}

.star.selected,
.star.hovered {
  color: gold;
}
.breadcrumb {
  font-size: 14px;
  margin-bottom: 10px;
  color: #666;
}
.breadcrumb a {
  text-decoration: none;
  color: #0073aa;
}
.breadcrumb a:hover {
  text-decoration: underline;
}

