/* Main Stylesheet - Import all CSS files */
@import url('variables.css');
@import url('base.css');
@import url('components.css');
@import url('layout.css');

/* Additional custom styles */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: row;
  min-height: 100vh;
  overflow-x: hidden;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding: var(--spacing-lg) var(--spacing-2xl);
  background-color: var(--color-gray-50);
}

.content-area {
  flex: 1;
  padding: var(--spacing-xl);
  overflow-y: auto;
}

