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

:root {
  --primary-green: #2a9d8f;
  --primary-orange: #e76f51;
  --primary-blue: #3b82f6;
  --dark-bg: #0f172a;
  --dark-surface: #1e293b;
  --light-bg: #f8fafc;
  --border-color: #e2e8f0;
  --text-dark: #1e293b;
  --text-light: #64748b;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--light-bg);
  color: var(--text-dark);
  height: 100vh;
  overflow: hidden;
}

.main-content {
  height: calc(100vh - 120px);
  overflow: hidden;
  position: relative;
}

.view-container {
  width: 100%;
  height: 100%;
}

/* Scrollbars */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #e2e8f0;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: #94a3b8;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #64748b;
}

/* Utilities */
.initial-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  color: var(--text-light);
  gap: 16px;
  padding: 40px;
}

.initial-message .material-icons {
  font-size: 48px;
  color: #cbd5e1;
}

.initial-message h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
}

.initial-message p {
  font-size: 14px;
}

.placeholder-text {
  color: var(--text-light);
  text-align: center;
  padding: 20px;
  font-style: italic;
}