/* Page layout structure */
.page__header {
  flex-shrink: 0;
}

/* Scrollbar styling for page content */
.page__content::-webkit-scrollbar {
  width: 8px;
}

.page__content::-webkit-scrollbar-track {
  background: var(--bg-3);
  border-radius: 4px;
}

.page__content::-webkit-scrollbar-thumb {
  background: var(--bg-1);
  border-radius: 3px;
  border: 1px solid var(--bg-3);
}

.page__content::-webkit-scrollbar-thumb:hover {
  background: var(--bg-2);
}

/* Flash messages */
.flash-message {
  padding: 0.75rem;
  margin-bottom: 1rem;
  border-radius: 4px;
  text-align: center;
}

.flash-alert {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.flash-notice {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
