.badge-android {
  background-color: #34a853 !important; 
  color: #fff !important;
}

.badge-ios {
  background-color: #000000 !important; 
  color: #fff !important;
}

.badge-web {
  background-color: #f39c12 !important; 
  color: #fff !important;
}

.badge-windows {
  background-color: #0078d6 !important; 
  color: #fff !important;
}

.badge-general {
  background-color: #6c757d !important; 
  color: #fff !important;
}

.pricing-tier-free {
  background-color: #9b59b6 !important;
  color: #fff !important;
  font-weight: bold;
  padding: 5px 8px;
  border-radius: 6px;
}

.pricing-tier-basic {
  background-color: #ffbb33 !important; 
  color: #212529 !important;
  font-weight: bold;
}

.pricing-tier-premium {
  background-color: #e74c3c !important;
  color: #fff !important;
  font-weight: bold;
}

.pricing-tier-default {
  background-color: #6c757d !important; 
  color: #fff !important;
  font-weight: bold;
}

.usage-limits {
  margin-top: 1rem;
}
.limit-box {
  background: #fff;
  border: 1px solid #ebedf2;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.limit-title {
  font-size: 0.85rem;
  color: #6c757d;
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
}
.limit-value {
  font-size: 1rem;
  font-weight: 700;
  color: #0072ff;
  margin-bottom: 0.25rem;
}
.limit-box small {
  font-size: 0.75rem;
  color: #6c757d;
}

.button
.buy-button,  
form .buy-button { 
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  color: white !important;
  font-weight: bold;
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.buy-button i, 
form .buy-button i{
  margin-right: 5px;
  color: white !important;
}

.buy-button:hover,
form .buy-button:hover {
  background: linear-gradient(135deg, #0072ff, #0056b3);
  transform: scale(1.05);
  box-shadow: 0px 4px 10px rgba(0, 114, 255, 0.3);
  color: #fff !important;
}

.buy-button:active,
form .buy-button:active {
  background: linear-gradient(135deg, #0056b3, #0041a3);
  color: #fff !important;
}

.buy-button:focus,
form .buy-button:focus {
  outline: none;
  box-shadow: 0px 0px 10px rgba(0, 114, 255, 0.5);
  color: #fff !important;
}

.buy-button {
  display: inline-flex; 
  align-items: center;
  justify-content: center;
   width: auto;  
  min-width: 150px;
}

.pricing-tier-free {
  background-color: #28a745;
  color: white;
}

.badge-android {
  background-color: #34a853;
  color: white;
}

.badge-ios {
  background-color: #000;
  color: white;
}

.badge-web {
  background-color: #f39c12;
  color: white;
}

.badge-windows {
  background-color: #0078d6;
  color: white;
}

.badge-captcha {
  background-color: #ff0000;
  color: white;
}

.badge-general {
  background-color: #6c757d;
  color: white;
}

.buy-button {
  background-color: #007bff;
  color: white;
  border-radius: 0.25rem;
}

.buy-button:hover {
  background-color: #0056b3;
}

.btn-outline-primary {
  border-color: #007bff;
  color: #007bff;
}

.btn-outline-primary:hover {
  background-color: #007bff;
  color: white;
}

.filter-bar {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  padding: 10px 0;
  border-bottom: 1px solid #dee2e6;
}

.filter-label {
  font-weight: bold;
  margin-right: 10px;
}

.filter-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
  background-repeat: no-repeat;
  background-position-x: calc(100% - 10px);
  background-position-y: center;
  background-size: 16px;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  padding: 0.5rem 2.5rem 0.5rem 1rem; 
  font-size: 1rem;
  color: #495057;
  background-color: #fff;
  cursor: pointer;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.filter-select:focus {
  border-color: #007bff;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
}

.filter-select::-ms-expand {
  display: none;
}
@media (max-width: 768px) {
  .filter-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .filter-label {
    margin-bottom: 5px;
  }
}