#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f7f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 9999;
  color: #2c522b;
  font-family: Arial, sans-serif;
}

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

.spinner {
  width: 40px;
  height: 40px;
  border: 6px solid rgba(44, 82, 43, 0.3);
  border-top: 6px solid #2c522b;
  border-radius: 50%;
  margin: auto;
  animation: spin 1s linear infinite;
}

.loading-text {
  margin-top: 20px;
  font-size: 18px;
  letter-spacing: 2px;
  color: #2c522b;
  animation: blink 1.5s infinite;
}

@keyframes spin { 
  to { transform: rotate(360deg); } 
}

@keyframes blink { 
  50% { opacity: 0.5; } 
}

@keyframes fadeIn {
  from { opacity: 0.5; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
