/* Custom Styles for Live2D Model Selector */

/* Ensures the container takes full viewport height and width */
html,
body {
  height: 100%;
  margin: 0;
  overflow: hidden; /* Prevent body scrollbars */
  font-family: "Inter", sans-serif;
}
#app-container {
  display: flex;
  height: 100vh;
  background-color: #f7f4f0; /* Warm Light Cream/Off-White */
}
#selection-panel {
  width: 250px;
  min-width: 200px;
  padding: 1.5rem;
  background-color: #ffffff; /* Clean White */
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
#main-viewer {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
#canvas-container {
  width: 100%;
  height: 100%;
  max-height: 80vh;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(245, 158, 11, 0.5); /* Amber shadow */
  background-color: #f7f4f0;
  cursor: pointer;
  position: relative;
}
canvas {
  display: block;
  width: 100%;
  height: 100%;
}

/* Active/Accent Colors - Applied via JavaScript on button click */
/* Note: The 'active' class is now defined using Tailwind classes in JavaScript for simplicity.
   If you preferred pure CSS, you would define all active styles here: */
/*
.model-button.active,
.motion-button.active {
    background-color: #c07a00;
    border-color: #fbbf24;
    color: #ffffff;
}
.motion-button.active {
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.8);
}
*/
