:root {
    /* --primary-color: #40a798 !important; */
    --primary-color: #0f7837 !important;
    --secondary-color: #e57f00 !important;

    /* --secondary-color: #476268; */
    --tertiary-color: #002212;
    --light-color: #fcfcfc;

    --success-color: #0f7837;
    --info-color: #17a2b8;
    --danger-color: #dc3545;

    --text-tertiary: --tertiary-color;
    --text-secondary: --secondary-color!important;
    --text-primary: --primary-color!important;
    

}

.dark-theme {
  --primary-color: #0f7837 !important;
  --secondary-color: #e57f00 !important;
  --tertiary-color: #fafffd;
  --light-color: #020029;

  --success-color: #0f7837;
  --info-color: #17a2b8;
  --danger-color: #dc3545;

  /* Corrected variable references */
  --text-tertiary: var(--tertiary-color);
  --text-secondary: var(--secondary-color);
  --text-primary: var(--primary-color);

  .card{
    box-shadow: rgba(255, 255, 255, 0.1) 0px 4px 12px !important;
  }
}
