/* Keep main container clean (white stays) */
.banner160x600-content {
  background: white;
  box-shadow: none; /* optional: remove shadow if you want flatter look */
  border-radius: 8px;
}

/* 🔥 THIS is the real fix */
.banner160x600-content .content {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
}
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 30px 0;
}

.pagination a {
  display: inline-block;
  min-width: 40px;
  text-align: center;
  padding: 10px 14px;
  background: #f2f2f2;
  border: 1px solid #ddd;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.2s ease;
}

/* Hover */
.pagination a:hover {
  background: #e6e6e6;
}

/* ACTIVE (your red box) */
.pagination a.active {
  background: #8B1C1C; /* deep red */
  color: #fff;
  border-color: #8B1C1C;
}

/* Last button */
.pagination a.last {
  padding: 10px 16px;
}