/* retro-classic 2016 Roblox Studio style */

body {
  margin: 0;
  background: #ececec;
  font-family: Arial, sans-serif;
  color: #333;
}

.demo-container {
  max-width: 640px;
  margin: 48px auto;
  padding: 0 24px;
}

/* Window frame */
.studio-window {
  background: #fff;
  border: 1px solid #aaa;
  border-radius: 3px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  overflow: hidden;
}

/* Title bar */
.studio-toolbar {
  display: flex;
  align-items: center;
  height: 28px;
  background: linear-gradient(to bottom, #f4f4f4, #eaeaea);
  border-bottom: 1px solid #ccc;
  padding: 0 8px;
  font-size: 12px;
  color: #555;
}

.studio-title {
  flex: 1;
}

.toolbar-btn {
  background: #e1e1e1;
  border: 1px solid #999;
  border-radius: 2px;
  padding: 3px 8px;
  font-size: 11px;
  color: #333;
  cursor: pointer;
  transition: background 0.1s, border-color 0.1s;
}

.toolbar-btn:hover {
  background: #d4d4d4;
  border-color: #888;
}

/* Archive panel */
.archive-ui-panel {
  background: #fafafa;
}

.archive-header {
  background: #f9f9f9;
  padding: 6px 10px;
  font-size: 13px;
  color: #444;
  border-bottom: 1px solid #ddd;
}

/* List styling */
.archive-list {
  list-style: none;
  margin: 0;
  padding: 6px 8px;
  max-height: 200px;
  overflow-y: auto;
  background: #fff;
}

.archive-list li {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 2px;
  margin: 4px 0;
  padding: 4px 6px;
  font-size: 12px;
  color: #333;
  transition: background 0.1s;
}

.archive-list li:hover {
  background: #f0f8ff;
}

.archive-list code {
  background: transparent;
  color: #0076ff;
}

/* Note callout */
.archive-note {
  background: #fff4e5;
  padding: 6px 10px;
  margin: 6px 8px;
  font-size: 11px;
  color: #a05a00;
  border-left: 4px solid #f1c232;
}

/* Footer hint */
.demo-footer {
  margin-top: 16px;
  font-size: 11px;
  color: #666;
  text-align: center;
}
