/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

:root {
  --vivum-forest: #2E5339;
  --vivum-deep: #1A3324;
  --vivum-moss: #8BAF8F;
  --vivum-linen: #F5F3EE;
  --vivum-charcoal: #2A2A28;
  --vivum-cork: #C4A97D;
}

html {
  background: var(--vivum-linen);
  color: var(--vivum-charcoal);
}

body {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(46, 83, 57, 0.08), transparent 28rem),
    var(--vivum-linen);
  color: var(--vivum-charcoal);
}

.notice,
.alert {
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-weight: 600;
  box-shadow: 0 1.25rem 2.5rem rgba(26, 51, 36, 0.12);
}

.notice {
  background: #f4f8f0;
  border: 1px solid rgba(139, 175, 143, 0.55);
  color: var(--vivum-deep);
}

.alert {
  background: #fff4ee;
  border: 1px solid #e7b9a0;
  color: #7a2e18;
}
