<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.cursor-editor-panel {
  position: fixed;
  top: 120px;
  left: 0;
  z-index: 9999;
  display: flex;
  transition: transform 0.3s ease;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.cursor-editor-panel.collapsed .cursor-panel-content {
  transform: translateX(-150px);
}

.cursor-panel-content {
  position: relative;
  width: 150px;
  background-color: #333;
  color: #fff;
  padding: 10px;
  transition: transform 0.3s ease;
}

.cursor-panel-toggle {
  position: absolute;
  right: -24px;
  top: 0;
  width: 24px;
  height: 32px;
  background-color: #333;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.cursor-panel-toggle .toggle-icon {
  display: inline-block;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.cursor-editor-panel.collapsed .toggle-icon {
  transform: rotate(180deg);
}

/* Edit icon styles */
.cursor-edit-icon {
  margin-left: 10px;
  cursor: pointer;
  color: var(--highlight-selected-bg-color);
  transition: opacity 0.3s;
}

.cursor-edit-icon:hover {
  opacity: 0.7;
}

.cursor-user-info {
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.user-name {
  font-weight: bold;
  font-size: 14px;
}

.cursor-panel-actions {
  display: flex;
  flex-direction: column;
}

.logout-button {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  padding: 5px;
  border-radius: 3px;
  transition: background-color 0.2s;
}

.logout-button:hover {
  background-color: rgba(255, 255, 255, 1);
}

.logout-icon {
  margin-right: 10px;
}

/* Product Form Modal Styles */
.cursor-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9998;
}

.cursor-product-form {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 800px;
  max-height: 80vh;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.form-header {
  padding: 15px 20px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.form-header h3 {
  margin: 0;
  font-size: 18px;
  color: #333;
}

.close-button {
  font-size: 24px;
  line-height: 1;
  color: #666;
  cursor: pointer;
}

.close-button:hover {
  color: #333;
}

.form-content {
  padding: 20px;
  overflow-y: auto;
  max-height: calc(80vh - 60px);
}

.loading-indicator {
  text-align: center;
  padding: 20px;
  color: #666;
}

.products-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-start;
}

.product-item {
  display: flex;
  align-items: center;
  border: 1px solid #eee;
  border-radius: 4px;
  padding: 6px;
  background-color: #fafafa;
  cursor: move;
  transition: box-shadow 0.2s, transform 0.2s;
  width: calc(33.33% - 8px);
  box-sizing: border-box;
}

.product-item.dragging {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  opacity: 0.8;
  transform: scale(1.02);
  z-index: 1000;
}

/* Removed drag handle */

.drop-placeholder {
  background-color: #0073aa;
  height: 2px;
  margin: 10px 0;
  transition: height 0.2s;
}

/* Save button styles */
.save-button-container {
  margin: 20px 0;
  text-align: center;
}

.save-button {
  padding: 10px 20px;
  background-color: #0073aa;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.2s;
}

.save-button:hover {
  background-color: #005988;
}

.message-container {
  padding: 10px;
  margin: 10px 0;
  border-radius: 4px;
  text-align: center;
  transition: opacity 0.5s;
}

.product-thumbnail {
  width: 40px;
  height: 40px;
  margin-right: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f3f3f3;
  border: 1px solid #eee;
}

.product-thumbnail img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-details {
  flex: 1;
  min-width: 0; /* Prevents text from overflowing */
}

.product-details h4 {
  margin: 0 0 2px;
  font-size: 14px;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-sku {
  margin: 0;
  font-size: 11px;
  color: #666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-description {
  margin: 0;
  font-size: 14px;
  color: #555;
  line-height: 1.4;
}

.no-image {
  font-size: 10px;
  color: #999;
  text-align: center;
}

.no-products, .error {
  text-align: center;
  padding: 20px;
  color: #666;
}</pre></body></html>