/* Brand Analyst Styles */
.brand-scanner-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.brand-scanner-input-group {
  display: flex;
  gap: 10px;
  margin-bottom: 2rem;
}

.brand-scanner-input {
  flex: 1;
  padding: 12px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
}

.brand-scanner-btn {
  padding: 12px 24px;
  background: var(--bs-primary, #0d6efd);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.2s;
}

.brand-scanner-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Results Section */
.brand-identity-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  margin-bottom: 2rem;
}

.palette-container {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.palette-swatch {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.2s;
}

.palette-swatch:hover {
  transform: scale(1.1);
}

.social-post-card {
  background: #f8f9fa;
  border-left: 4px solid var(--bs-primary, #0d6efd);
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 0 8px 8px 0;
}

.copy-btn {
  font-size: 0.8rem;
  padding: 4px 8px;
  margin-top: 8px;
  cursor: pointer;
}

/* Loading State */
.brand-loader {
  text-align: center;
  padding: 3rem;
  display: none;
}
.brand-loader.active {
  display: block;
}