.wnp-search-number {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.wnp-search-number>div {
  width: calc((100% - 20px) / 3);
}

.wnp-search-number .select2-container {
  width: 100% !important;
}


/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
  color: #333;
  line-height: 1.6;
} */

.ts-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.ts-site-name {
  font-size: 8px;
  color: #ccc;
  opacity: 0.3;
  position: absolute;
  top: 5px;
  left: 10px;
}

.ts-search-section {
  text-align: center;
  margin-bottom: 40px;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.ts-search-input {
  padding: 12px 20px;
  font-size: 16px;
  border: 2px solid #ddd;
  border-radius: 5px;
  width: 300px;
  max-width: 100%;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.ts-search-input:focus {
  outline: none;
  border-color: #FFD700;
}

.ts-search-btn {
  background-color: #333;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  margin-left: 10px;
  transition: background-color 0.3s;
}

.ts-search-btn:hover {
  background-color: #555;
}

.ts-section-title {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #333;
}

.ts-section-title .ts-star {
  margin-right: 10px;
  font-size: 24px;
}

.ts-plates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.ts-plate-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.ts-plate-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.ts-plate-display {
  display: flex;
  align-items: center;
}

.ts-star-icon {
  background-color: #333;
  color: white;
  width: 25px;
  height: 25px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-size: 14px;
}

.ts-plate-number {
  background-color: #FFD700;
  color: #000;
  padding: 8px 15px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 1px;
  border: 2px solid #333;
}

.ts-price {
  color: #666;
  font-size: 14px;
  font-weight: 500;
}

.ts-description {
  text-align: center;
  margin-bottom: 40px;
  color: #666;
  font-size: 16px;
  line-height: 1.5;
}

.ts-closest-results {
  margin-top: 60px;
}

.ts-closest-results .ts-plates-grid {
  margin-bottom: 30px;
}

.ts-closest-results .ts-plate-item {
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 20px 15px;
}

.ts-closest-results .ts-plate-number {
  margin-bottom: 10px;
  font-size: 18px;
}

.ts-view-more-btn {
  display: block;
  margin: 0 auto;
  background-color: #ccc;
  color: #666;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.ts-view-more-btn:hover {
  background-color: #bbb;
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
  .ts-plates-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .ts-section-title {
    font-size: 24px;
  }

  .ts-search-input {
    width: 100%;
    margin-bottom: 10px;
  }

  .ts-search-btn {
    margin-left: 0;
    width: 100%;
  }

  .ts-container {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .ts-plate-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .ts-plate-display {
    flex-direction: column;
    gap: 10px;
  }

  .ts-star-icon {
    margin-right: 0;
  }

  .ts-section-title {
    font-size: 20px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .ts-plates-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}