:root {
  --color-primary: #92CB6D;
  --color-primary-dark: #7FBF5B;
  --color-dark: #3A3B3D;
  --color-light-bg: #f9f9fb;
  --color-border: #e1e1e1;
  --color-form-bg: #f8f8f8;
  --color-text: #3A3B3D;
  --color-success-bg: #e8f6e2;
  --color-grey-badge: #f2f2f2;
  --color-danger: #e53935;         /* Modern red */
  --color-warning: #f57c00;
  --color-accent: #F39C12;
}

/* Global Box Sizing + Base Font */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'IBM Plex Sans', sans-serif;
  color: #3A3B3D;
  background-color: #f9f9fb;
  line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: #3A3B3D;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p, span, label {
  font-size: 16px;
  color: #3A3B3D;
}

/* Links */
a {
  color: #92CB6D;
  text-decoration: none;
    transition: 0.3s;
}

a:hover {
  text-decoration: none;
  transition: 0.3s;
}

.btn-full {
  width: 100%;
  display: block;
  font-weight: 600;
  padding: 14px 16px!important;
}

form label {
    font-weight: 700;
}

/* Forms */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
  background-color: #f8f8f8;
  transition: border-color 0.3s ease, background-color 0.3s ease;
  appearance: none;
  margin-bottom: 20px;
}

/* Focus State */
input:focus,
select:focus,
textarea:focus {
  border-color: #92CB6D;
  background-color: #fff;
  outline: none;
}

/* Custom Select Dropdown Chevron */
select {
  background-image: url('/static/image/chevron.png');
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
  transition: background-transform 0.3s ease;
}

/* Animate Chevron Rotation on Focus */
select:focus {
  background-image: url('/static/image/chevron.png'); /* same chevron but rotated down */
}

/* Buttons */
.primary-button,
input[type="submit"] {
  background-color: #92CB6D;
  color: #fff;
  padding: 10px 16px;
  font-size: 16px;
  font-weight: 600;
  height:48px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.primary-button:hover,
input[type="submit"]:hover {
  background-color: #7FBF5B;
}

.secondary-button {
  background-color: #f0f0f0;
  color: #333;
  padding: 10px 16px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.secondary-button:hover {
  background-color: #7FBF5B;
}

/* Checkbox + Radio Custom Styling */
input[type="checkbox"],
input[type="radio"] {
  accent-color: #92CB6D;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }

.rounded {
  border-radius: 8px;
}

.shadow {
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
