/* Custom Cozy Color Tokens & Theme variables */
:root {
  --bg-cream: #fbf8eb;
  --card-sand: #f6f1e5;
  --card-sand-light: #faf7ef;
  --border-warm: #d8d2bc;
  --border-focus: #1c352d;
  
  --accent-forest: #1c352d;
  --accent-forest-hover: #294e42;
  --accent-forest-light: #e4ece9;
  
  --accent-terracotta: #d66148;
  --accent-terracotta-hover: #be533c;
  --accent-terracotta-light: #fbece9;
  
  --text-dark: #233329;
  --text-muted: #5e6b62;
  --text-light: #ffffff;
  
  --shadow-cozy: 0 4px 12px rgba(44, 39, 23, 0.05);
  --shadow-cozy-hover: 0 6px 18px rgba(44, 39, 23, 0.08);
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  
  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --transition-smooth: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Core Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-cream);
  color: var(--text-dark);
  font-family: var(--font-sans);
  line-height: 1.5;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-cream);
}
::-webkit-scrollbar-thumb {
  background: var(--border-warm);
  border-radius: var(--radius-sm);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* Common Layout Containers */
.app-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 0 20px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Header Section styling */
.app-header {
  display: grid;
  grid-template-columns: 120px 1fr 120px;
  align-items: center;
  padding: 30px 0 20px 0;
  border-bottom: 1px solid var(--border-warm);
}

.header-left {
  display: flex;
  justify-content: flex-start;
}

.header-center {
  text-align: center;
}

.header-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}

.mc-link {
  font-size: .85rem;
  color: var(--text-muted);
  text-decoration: none;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  transition: background .2s, color .2s;
}
.mc-link:hover {
  background: var(--accent-forest-light);
  color: var(--accent-forest);
}

.header-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: -0.5px;
  color: var(--accent-forest);
  margin-bottom: 4px;
}

.header-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* Navigation Tabs */
.header-nav {
  display: inline-flex;
  background-color: var(--card-sand);
  border: 1px solid var(--border-warm);
  padding: 4px;
  border-radius: var(--radius-md);
}

.nav-tab {
  background: none;
  border: none;
  padding: 8px 20px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: calc(var(--radius-md) - 3px);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.nav-tab:hover {
  color: var(--text-dark);
}

.nav-tab.active {
  background-color: var(--accent-forest);
  color: var(--text-light);
}

/* Status badge ring */
.status-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--accent-terracotta);
  background-color: transparent;
  animation: pulse-ring 2.5s infinite;
}

.status-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--accent-terracotta);
}

/* Main Content Area */
.app-main {
  flex: 1;
  padding: 30px 0;
}

.tab-view {
  display: none;
}

.tab-view.active {
  display: block;
  animation: fadeIn 0.4s ease-out;
}

/* Cards & Panels */
.card {
  background-color: var(--card-sand);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-cozy);
}

/* STUDIO VIEW LAYOUT */
.studio-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 24px;
  align-items: start;
}

/* Sidebar parameter forms */
.sidebar-panel {
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  position: sticky;
  top: 20px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--accent-forest);
  margin-bottom: 20px;
}

.studio-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Form inputs & controls */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

input[type="text"],
input[type="number"],
input[type="password"],
textarea,
select {
  background-color: var(--card-sand-light);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-dark);
  transition: var(--transition-smooth);
  width: 100%;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px var(--accent-forest-light);
}

/* Dropdown select custom wrapper */
.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: '▼';
  font-size: 9px;
  color: var(--text-muted);
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

select {
  appearance: none;
  padding-right: 32px;
}

/* Prompt suggestions */
.prompt-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.suggestion-tag {
  font-size: 11px;
  background-color: var(--accent-forest-light);
  color: var(--accent-forest);
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.suggestion-tag:hover {
  background-color: var(--accent-forest);
  color: var(--text-light);
}

/* Drag and drop zone */
.image-dropzone {
  border: 2px dashed var(--border-warm);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  cursor: pointer;
  background-color: var(--card-sand-light);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-dropzone:hover {
  border-color: var(--border-focus);
  background-color: var(--accent-forest-light);
}

.dropzone-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.upload-icon {
  width: 24px;
  height: 24px;
  color: var(--text-muted);
}

.dropzone-text {
  font-size: 12px;
  color: var(--text-muted);
}

.file-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

/* Reference image preview overlay */
.dropzone-preview {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--card-sand-light);
  z-index: 5;
}

.dropzone-preview img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.preview-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(28, 53, 45, 0.85);
  color: var(--text-light);
  padding: 6px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.upload-status {
  font-size: 11px;
  font-weight: 500;
}

.remove-btn {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
}

.remove-btn:hover {
  color: var(--accent-terracotta);
}

/* Advanced Settings details toggle */
.advanced-details {
  border-top: 1px solid var(--border-warm);
  padding-top: 14px;
}

.advanced-summary {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  user-select: none;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.advanced-summary::after {
  content: '▶';
  font-size: 8px;
  transition: var(--transition-smooth);
}

.advanced-details[open] .advanced-summary::after {
  transform: rotate(90deg);
}

.advanced-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 14px;
  animation: slideDown 0.25s ease-out;
}

/* Slider values label formatting */
.slider-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.slider-val {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-forest);
  background-color: var(--accent-forest-light);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
}

/* Styled range slider */
.styled-slider {
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--border-warm);
  outline: none;
  cursor: pointer;
}

.styled-slider::-webkit-slider-thumb {
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent-forest);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.styled-slider::-webkit-slider-thumb:hover {
  background: var(--accent-forest-hover);
  transform: scale(1.15);
}

/* Seed generator input styling */
.seed-input-row {
  display: flex;
  gap: 8px;
}

.seed-input-row input {
  flex: 1;
}

/* Common button types */
.btn,
.primary-btn,
.secondary-btn {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.primary-btn {
  background-color: var(--accent-forest);
  color: var(--text-light);
  box-shadow: var(--shadow-cozy);
}

.primary-btn:hover {
  background-color: var(--accent-forest-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-cozy-hover);
}

.primary-btn:disabled {
  background-color: var(--border-warm);
  color: var(--text-muted);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.secondary-btn {
  background-color: var(--card-sand-light);
  border: 1px solid var(--border-warm);
  color: var(--text-dark);
}

.secondary-btn:hover {
  border-color: var(--border-focus);
  background-color: var(--accent-forest-light);
}

.small-btn {
  padding: 6px 12px;
  font-size: 12px;
  border-radius: var(--radius-sm);
}

.text-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: underline;
  transition: var(--transition-smooth);
}

.text-btn:hover {
  color: var(--accent-forest);
}

.icon-btn {
  background-color: var(--card-sand-light);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-md);
  width: 38px;
  height: 38px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.icon-btn:hover {
  border-color: var(--border-focus);
  background-color: var(--accent-forest-light);
}

/* Button generation loading spinner */
.btn-loader {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--text-light);
  animation: spin 0.8s linear infinite;
}

/* INTERACTIVE WORKSPACE PANEL */
.workspace-panel {
  min-height: 520px;
  display: flex;
  flex-direction: column;
}

.canvas-state {
  display: none;
  flex: 1;
  align-items: center;
  justify-content: center;
}

.canvas-state.active {
  display: flex;
}

/* Empty workspace state styling */
.empty-state-content,
.loading-state-content {
  text-align: center;
  max-width: 420px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--accent-forest-light);
  color: var(--accent-forest);
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-cozy);
}

.state-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--accent-forest);
}

.state-desc {
  color: var(--text-muted);
  font-size: 14px;
}

/* Terracotta custom spinner */
.terracotta-spinner {
  position: relative;
  width: 64px;
  height: 64px;
  margin-bottom: 8px;
}

.spinner-ring {
  width: 100%;
  height: 100%;
  border: 4px solid var(--accent-forest-light);
  border-top-color: var(--accent-terracotta);
  border-radius: 50%;
  animation: spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.spinner-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-terracotta);
  animation: blink 1.2s infinite;
}

.polling-timer {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-terracotta);
  background-color: var(--accent-terracotta-light);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  margin-top: 8px;
}

/* COMPLETED WORKSPACE STATE */
.result-layout {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  gap: 20px;
}

/* Frame and zoom containers for previews */
.preview-frame-container {
  position: relative;
  flex: 1;
  background-color: var(--card-sand-light);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-md);
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.preview-frame {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
}

.preview-frame:active {
  cursor: grabbing;
}

.zoomable-img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.15s ease-out;
  transform-origin: center center;
}

.zoom-controls {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  gap: 6px;
  background: rgba(246, 241, 229, 0.85);
  backdrop-filter: blur(4px);
  padding: 4px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-warm);
}

.zoom-controls .icon-btn {
  width: 32px;
  height: 32px;
  font-size: 13px;
  font-weight: bold;
  background: transparent;
  border: none;
}

.zoom-controls .icon-btn:hover {
  background-color: var(--accent-forest-light);
}

/* Metadata drawer pane */
.metadata-drawer {
  border-top: 1px solid var(--border-warm);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.meta-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.meta-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--accent-forest);
}

.action-buttons {
  display: flex;
  gap: 8px;
  align-items: center;
}

.meta-details-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  background-color: var(--card-sand-light);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-md);
  padding: 12px;
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.meta-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.meta-val {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.meta-prompt-box {
  background-color: var(--card-sand-light);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-md);
  padding: 12px;
  max-height: 80px;
  overflow-y: auto;
}

.meta-prompt-text {
  font-size: 12px;
  color: var(--text-dark);
  font-style: italic;
}

/* SESSION HISTORY CAROUSEL */
.history-section {
  grid-column: span 2;
  margin-top: 24px;
}

.history-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.history-header .section-title {
  margin-bottom: 0;
}

.history-carousel-container {
  overflow-x: auto;
  padding: 4px 0;
}

.history-carousel {
  display: flex;
  gap: 12px;
  min-height: 80px;
}

.history-card {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-warm);
  background-color: var(--card-sand-light);
  cursor: pointer;
  flex-shrink: 0;
  transition: var(--transition-smooth);
  position: relative;
}

.history-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.history-card:hover {
  transform: scale(1.05);
  border-color: var(--border-focus);
  box-shadow: var(--shadow-cozy);
}

.history-card.active {
  border: 2px solid var(--accent-terracotta);
  box-shadow: 0 0 0 2px var(--accent-terracotta-light);
}

.history-empty {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  padding-left: 8px;
  font-style: italic;
}

/* ARCHIVE GALLERY VIEW */
.gallery-view-header {
  text-align: center;
  margin-bottom: 30px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.gallery-empty-state {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding: 60px 40px;
}

.gallery-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
}

.gallery-card-img-wrap {
  width: 100%;
  aspect-ratio: 1;
  background-color: var(--card-sand-light);
  border-bottom: 1px solid var(--border-warm);
  overflow: hidden;
  position: relative;
}

.gallery-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-card:hover .gallery-card-img-wrap img {
  transform: scale(1.03);
}

.gallery-card-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.gallery-card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
}

.gallery-card-prompt {
  font-size: 13px;
  color: var(--text-dark);
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.gallery-card-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
}

/* SETTINGS TAB VIEW */
.settings-layout {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.settings-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-bottom: 1px solid var(--border-warm);
  padding-bottom: 24px;
}

.settings-section:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.settings-sub-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--accent-forest);
}

.password-input-row {
  display: flex;
  gap: 8px;
}

.password-input-row input {
  flex: 1;
}

.input-help {
  font-size: 11px;
  color: var(--text-muted);
}

/* Radio Group options */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.radio-label {
  cursor: pointer;
}

.radio-label input[type="radio"] {
  display: none;
}

.radio-custom-card {
  background-color: var(--card-sand-light);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: var(--transition-smooth);
}

.radio-label input[type="radio"]:checked + .radio-custom-card {
  border-color: var(--border-focus);
  background-color: var(--accent-forest-light);
  box-shadow: 0 0 0 1px var(--accent-forest);
}

.mode-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.radio-label input[type="radio"]:checked + .radio-custom-card .mode-name {
  color: var(--accent-forest);
}

.mode-desc {
  font-size: 12px;
  color: var(--text-muted);
}

.actions-row {
  display: flex;
  gap: 12px;
}

/* Footer elements */
.app-footer {
  text-align: center;
  padding: 40px 0;
  border-top: 1px solid var(--border-warm);
  margin-top: 40px;
}

.app-footer p {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* UTILITY CLASSES */
.hidden {
  display: none !important;
}

/* Keyframe animations */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes blink {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
  }
  to {
    opacity: 1;
    max-height: 300px;
  }
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(214, 97, 72, 0.4);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(214, 97, 72, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(214, 97, 72, 0);
  }
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 992px) {
  .studio-layout {
    grid-template-columns: 1fr;
  }
  .sidebar-panel {
    max-height: none;
    position: static;
  }
  .meta-details-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .app-header {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .header-left, .header-right {
    justify-content: center;
  }
  .header-title {
    font-size: 1.8rem;
  }
  .meta-details-grid {
    grid-template-columns: 1fr;
  }
  .actions-row {
    flex-direction: column;
  }
}
