/* CT Viewer CaddieAI Themed Styles */
#ct-viewer-root {
  font-family: "Inter", "Helvetica", sans-serif;
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  margin: 0 auto;
  max-width: 1200px;
}
.viewer-header h2 {
  color: #0e1b2b;
  font-size: 1.8rem;
  margin-bottom: 4px;
}
.viewer-header p {
  color: #5e718d;
  margin-bottom: 20px;
}
#container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
#fileList {
  flex: 0 0 260px;
  background: #f9fafc;
  border-radius: 10px;
  padding: 16px;
}
#viewer {
  flex: 1;
  background: #ffffff;
  border-radius: 10px;
  padding: 16px;
}
#viewer canvas {
  width: 100%;
  background: #000;
  border-radius: 6px;
  margin: 12px 0;
}
button {
  background-color: #3cb5e5;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 8px 12px;
  cursor: pointer;
  transition: background 0.2s ease;
}
button:hover {
  background-color: #2a94c4;
}
input, select {
  border: 1px solid #d1d5db;
  border-radius: 4px;
  padding: 6px 8px;
  margin-left: 6px;
}
progress {
  width: 100%;
  height: 10px;
  border-radius: 5px;
}
progress::-webkit-progress-value {
  background: #3cb5e5;
}
.controls {
  margin: 8px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
@media (max-width: 992px) {
  #container {
    flex-direction: column;
  }
  #fileList {
    flex: none;
    width: 100%;
    max-height: 200px;
  }
}
