.bs-format-icons {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.bs-format {
  padding: 10px 12px;
  border: 2px solid #ccc;
  background: white;
  font-size: 20px;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s ease-in-out;
}

.bs-format.active,
.bs-format:hover {
  border-color: #0073aa;
  background-color: #e6f3ff;
}

#branding-studio {
  display: flex;
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: auto;
}
.studio-sidebar {
  flex: 1;
  border-left: 1px solid #ccc;
  padding-left: 20px;
}
.studio-preview {
  flex: 2;
  text-align: center;
}
#bs-canvas-wrapper {
  width: 100%;
  max-width: 640px;
  margin: 0 auto 20px;
  position: relative;
  background: #f0f0f0;
  aspect-ratio: 1 / 1; /* Padrão quadrado (Instagram Square) */
  border: 2px dashed #ccc;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
canvas {
  max-width: 100%;
  border: 1px solid #000;
}
