/* Domain-related Styles */

/* Domain pricing table */
.domain-pricing-table {
  background-color: #151515;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.domain-pricing-table th {
  background-color: #172031;
  color: #ffffff;
  padding: 1rem;
}

.domain-pricing-table td {
  padding: 1rem;
  border-bottom: 1px solid #333;
  color: #e2e8f0;
}

.domain-extension {
  font-weight: 600;
  color: #43bfe3;
}

/* Domain search form */
.domain-search-form {
  background-color: #151515;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  margin-bottom: 3rem;
  border: 1px solid #333;
}

.domain-search-input {
  border-radius: 30px;
  padding: 1rem 1.5rem;
  border: 2px solid #333;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  background-color: #1a1a1a;
  color: #e2e8f0;
}

.domain-search-input::placeholder {
  color: #a0aec0;
}

.domain-search-input:focus {
  border-color: var(--light-blue);
  box-shadow: 0 0 0 0.25rem rgba(67, 191, 227, 0.25);
  background-color: #1a1a1a;
  color: #ffffff;
}

/* Domain check result */
.domain-check-result {
  margin-top: 1.5rem;
  display: none;
}

.domain-check-result .alert {
  border-radius: 8px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Domain prices display */
.domain-prices {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.domain-price-item {
  background-color: #151515;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  padding: 1rem;
  text-align: center;
  flex: 1 0 120px;
  transition: var(--transition);
  border: 1px solid #333;
}

.domain-price-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(67, 191, 227, 0.2);
}

.domain-price-extension {
  font-weight: 700;
  color: #43bfe3;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.domain-price-value {
  color: var(--light-blue);
  font-weight: 600;
}

/* Domain search results tabs */
.domain-tabs {
  display: flex;
  border-bottom: 1px solid var(--gray);
  margin-bottom: 2rem;
}

.domain-tab {
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  font-weight: 500;
  transition: var(--transition);
  border-bottom: 2px solid transparent;
}

.domain-tab.active {
  border-color: var(--light-blue);
  color: var(--light-blue);
}

.domain-tab-content {
  display: none;
}

.domain-tab-content.active {
  display: block;
}
