.company-profile-page {
  background: #fafafa;
}

.company-profile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.company-profile-title {
  margin: 0;
  font-weight: 800;
  color: #000;
}

.company-profile-subtitle {
  color: #666;
  margin: 0;
}

.company-profile-toolbar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  border-radius: 10px;
  border: 1px solid #e5e5e5;
  background: #fff;
  color: #111;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}

.cp-btn:hover {
  background: #f3f3f3;
  transform: translateY(-1px);
}

.cp-btn i {
  color: #555;
}

.company-profile-viewer {
  border: 1px solid #e9ecef;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.company-profile-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: #888;
  font-size: 0.9rem;
}

.company-profile-actions {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.cp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: #f2f2f2;
  color: #555;
  font-weight: 600;
}

@media (max-width: 768px) {
  .company-profile-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .company-profile-actions {
    flex-direction: column;
  }
}
