/* src/App.css */
/* Basic reset for full viewport */
/* html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
} */

/* Container with a 3-column grid layout */
.container {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  width: 100%;
  height: 100vh;
  background-color: #ffffff;
}

/* Left column: text/icons */
.left-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  background-color: #ffffff;
}

/* Middle column: 3D model canvas */
.middle-column {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
}

/* Right column: text/icons */
.right-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  background-color: #ffffff;
}

/* Canvas for the 3D model */
#canvas3d {
  width: 400px; /* Adjust size as needed */
  height: 400px;
  /* background-color: #bdbdbd; */
}

/* Placeholder styles for text and icons */
.icon-placeholder,
.text-placeholder {
  margin: 0.5rem 0;
  padding: 1rem;
  background-color: #ffffff;
  border: 1px solid #ccc;
  width: 80%;
  text-align: center;
}
