:root {
  --primary-color: #2d5016;
  --secondary-color: #4a7c2c;
  --accent-color: #a8d5ba;
  --light-green: #e8f5e9;
  --dark-green: #1b3a0d;
  --white: #ffffff;
  --gray-light: #f5f5f5;
  --gray-medium: #cccccc;
  --gray-dark: #333333;
  --text-color: #333333;
  --border-color: #ddd;
  --success-color: #4caf50;
  --error-color: #f44336;
  --shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-color);
  background-color: var(--light-green);
  line-height: 1.6;
}

html, body {
  height: 100%;
}

button,
.btn-primary,
.btn-secondary,
.btn-danger,
.btn-success {
  cursor: pointer;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  padding: 10px 20px;
  transition: all 0.3s ease;
  font-family: inherit;
}

button:hover,
.btn-primary:hover,
.btn-secondary:hover,
.btn-danger:hover,
.btn-success:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  background-color: var(--white);
  padding: 30px;
  border-radius: 12px;
  max-width: 90%;
  max-height: 90vh;
  overflow: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.modal-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  cursor: pointer;
}

.modal-content span {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 2.5rem;
  font-weight: bold;
  cursor: pointer;
  color: var(--gray-dark);
  transition: color 0.3s ease;
}

.modal-content span:hover {
  color: var(--primary-color);
}

.modal-content h3 {
  margin-top: 20px;
  text-align: center;
  color: var(--primary-color);
}

input, textarea, select {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 5px rgba(45, 80, 22, 0.3);
}
