@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

:root {
  --primary: #81bc00;
  --primary-dark: #689828;
  --odd: #e9e9e9;
  --dark: #434343;
  --dark-transparent: #43434333;
  --admin: #ffc107;
}

/* Global body styles */
body {
  font-family: 'Montserrat', sans-serif;
  background-color: #f9f9f9;
  margin: 0;
  padding: 0;
  color: #333;
}

/* Primary text */
.text-primary {
  color: var(--primary) !important;
}

/* Button overrides */
.btn-primary {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
}
.btn-primary:hover {
  background-color: var(--primary-dark) !important;
  border-color: var(--primary-dark) !important;
}

/* Text preview cards */
.text-preview {
  margin-top: 20px;
  padding: 15px;
  background: #fafafa;
  border-radius: 8px;
  border: 1px solid #ddd;
}
.text-preview h3 {
  font-weight: bold;
  font-size: 1.5rem;
  margin-top: 1rem;
}
.text-preview pre {
  background: #f5f5f5;
  padding: 10px;
  border-radius: 8px;
  overflow-x: auto;
}

/* List styles */
ul {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: auto;
}
li {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  padding: 20px;
  margin-bottom: 20px;
  transition: box-shadow 0.3s ease;
}
li:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Headings */
h1 {
  font-size: 2em;
  margin-bottom: 1em;
}
h2 {
  margin-top: 0;
  color: #222;
  font-size: 1.4em;
}

/* Paragraphs */
p {
  color: #555;
}
