/*
 * Copyright (c) 2025 TechDivision GmbH
 * All rights reserved
 *
 * This product includes proprietary software developed at TechDivision GmbH, Germany
 * For more information see https://www.techdivision.com/
 *
 * To obtain a valid license for using this software please contact us at
 * license@techdivision.com
 */
:root {
  /* colors */
  --color-red: #ce0810;
  --color-green: #627944;
  --color-green-light: #f6fAf1;
  --color-green-dark: #436f45;
  --color-gray-light: #e5e5e5;
  --color-gray: #999;
  --color-gray-dark: #4c4c4c;
  --color-gray-darker: #303030;
  --color-black: #000;
  --color-white: #fff;
  --color-blue: #00529c;
  --color-orange: #f98b1f;
  --background-color: var(--color-white);
  --light-color: #eee;
  --dark-color: #ccc;
  --text-color: var(--color-black);
  --text-color-reverse: var(--color-white);

  /* theme vars */
  --link-color: var(--color-red);
  --button-color: var(--text-color-reverse);
  --button-color-hover: var(--text-color);
  --button-background: var(--color-gray-darker);
  --button-background-hover: var(--color-white);
  --button-border: var(--color-gray-darker);
}
