/* Mock Browser Styles */
.mock-browser {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: 1px solid #e5e5e5;
}

/* Browser Chrome (Top Bar) */
.browser-chrome {
  background: linear-gradient(to bottom, #f5f5f7 0%, #e8e8e8 100%);
  border-bottom: 1px solid #d1d1d1;
  padding: 12px 16px;
}

/* Traffic Lights */
.browser-controls {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.traffic-light {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 0.5px solid rgba(0, 0, 0, 0.1);
}

.traffic-light.red {
  background: linear-gradient(135deg, #ff6159 0%, #ff5f57 100%);
}

.traffic-light.yellow {
  background: linear-gradient(135deg, #ffbd2e 0%, #ffbb2b 100%);
}

.traffic-light.green {
  background: linear-gradient(135deg, #28ca42 0%, #27c93f 100%);
}

/* URL Bar */
.browser-url-bar {
  background: white;
  border-radius: 6px;
  padding: 10px 16px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
  border: 1px solid #d1d1d1;
}

.url-content {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lock-icon {
  width: 18px;
  height: 18px;
  color: #6b7280;
  flex-shrink: 0;
}

.url-text {
  font-size: 15px;
  color: #374151;
  font-weight: 500;
  letter-spacing: -0.01em;
}

#preview-slug {
  color: #73a9ff;
  font-weight: 600;
}

/* Browser Content */
.browser-content {
  background: #f9fafb;
  padding: 32px 24px;
  overflow-y: auto;
}

/* Preview Page */
.preview-page {
  max-width: 500px;
  margin: 0 auto;
}

.preview-header {
  text-align: center;
  margin-bottom: 32px;
}

.preview-title {
  font-size: 28px;
  font-weight: 700;
  color: #141414;
  margin-bottom: 8px;
  line-height: 1.2;
}

.preview-subtitle {
  font-size: 16px;
  color: #6b7280;
}

/* Preview Form */
.preview-form {
  background: white;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.preview-form-group {
  margin-bottom: 20px;
}

.preview-form-group:last-of-type {
  margin-bottom: 24px;
}

.preview-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
}

.preview-input {
  width: 100%;
  height: 42px;
  background: #f9fafb;
  border: 1px solid #d1d5db;
  border-radius: 6px;
}

.preview-textarea {
  width: 100%;
  height: 100px;
  background: #f9fafb;
  border: 1px solid #d1d5db;
  border-radius: 6px;
}

.preview-rating {
  display: flex;
  gap: 8px;
  justify-content: space-between;
}

.preview-rating-button {
  flex: 1;
  padding: 12px;
  background: #f9fafb;
  border: 2px solid #d1d5db;
  border-radius: 6px;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  color: #6b7280;
  transition: all 0.2s;
}

.preview-rating-button.selected {
  background: #73a9ff;
  border-color: #73a9ff;
  color: white;
}

.preview-button {
  width: 100%;
  padding: 12px 24px;
  background: #73a9ff;
  color: white;
  font-weight: 600;
  font-size: 16px;
  border-radius: 6px;
  text-align: center;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 1023px) {
  .browser-content {
    min-height: 400px;
  }
  
  .preview-title {
    font-size: 24px;
  }
}

