/* Base styles */
:root {
  --primary-color: #0d6efd;
  --secondary-color: #2c3e50;
  --light-color: #f8f9fa;
  --dark-color: #212529;
  --text-color: #212529;
  --text-light: #6c757d;
  --border-color: #dee2e6;
  --success-color: #198754;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
  --font-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--text-color);
  background-color: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Utility classes */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

/* Import Navigation, Footer, Modal, and Toast styles */
@import "./Navigation.css";
@import "./Footer.css";
@import "./Modal.css";
@import "./Toast.css";
