/* Custom loader styles */
.loader-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 6px solid #f3f3f3;
  border-top: 6px solid #007bff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Improve search bar */
.domain-search-wrapper {
  max-width: 750px;
  margin: 0 auto;
}

.search-input {
  border-radius: 50px;
  padding-left: 20px;
  border: 2px solid #eee;
  transition: all 0.3s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.search-input:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.search-button {
  border-radius: 50px;
  padding: 10px 30px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  border: none;
  color: white;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
  transition: all 0.3s;
}

.search-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 123, 255, 0.4);
  background: linear-gradient(135deg, #0069d9, #004494);
}

/* Results card styling */
.domain-info-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin-top: 30px;
  border: none;
}

.card-header-custom {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 15px;
  border-bottom: 1px solid #dee2e6;
}

.section-title {
  font-weight: 600;
  color: #007bff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-icon {
  width: 24px;
  height: 24px;
}

/* Available domain styling */
.available-notice {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 30px;
  text-align: center;
}

.available-text {
  font-size: 24px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 15px;
}

.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #28a745;
  color: white;
  border-radius: 50%;
  font-size: 24px;
}

.buy-now-btn {
  display: inline-block;
  padding: 12px 40px;
  background: linear-gradient(135deg, #28a745, #218838);
  color: white;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 10px rgba(40, 167, 69, 0.3);
}

.buy-now-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(40, 167, 69, 0.4);
  background: linear-gradient(135deg, #218838, #1e7e34);
  color: white;
  text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .search-input {
    border-radius: 50px;
  }

  .search-button {
    margin-top: 10px;
    width: 100%;
  }

  .input-group {
    flex-direction: column;
  }
}
