/* Sidebar Layout Styles for Editor */

.container {
  display: flex;
  flex-direction: row;
  min-height: 100vh;
}

/* Remove header styling here - use global header from site-global.css */

/* Sidebar styling */
.sidebar {
  width: 300px;
  background-color: #f8f9fa;
  border-right: 1px solid #e9ecef;
  padding: 1rem;
  height: calc(100vh - 60px); /* Adjust based on global header height */
  overflow-y: auto;
  position: fixed;
  left: 0;
  top: 60px; /* global header height */
}

.main-content {
  flex: 1;
  padding: 1rem;
  overflow-y: auto;
  margin-left: 300px; /* Push main content to the right of the fixed sidebar */
}

/* Drop zone styling */
.drop-zone {
  border: 2px dashed #ccc;
  padding: 2rem;
  text-align: center;
  margin-bottom: 1rem;
  background-color: #f8f9fa;
  border-radius: 8px;
}

.drop-zone-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#select-image {
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
}

#select-image:hover {
  background-color: #0056b3;
}

/* Image and sheet preview styling */
#image-preview {
  margin-top: 2rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  padding: 1rem;
  background-color: #f8f9fa;
  border-radius: 8px;
}

.sheet-preview {
  margin-top: 1rem;
  border: 1px solid #ccc;
  padding: 1rem;
  background-color: #f8f9fa;
  border-radius: 8px;
}

/* Additional editor-specific styles if needed */
