/*
Apply any theme variable overwrites that were set via admin theme settings.
Note: This file is a placeholder, it will be automatically/dynamically overwritten from the theme settings.
This will apply to ANY/ALL themes loaded, and before any of the core files are loaded.
*/
:root {
    /* Main backgrounds - white like FreeScout */
    --main-background: #ffffff;
    --surface: #ffffff;

    /* Header - white background with dark text */
    --header__bg: #ffffff;
    --header_nav__clr: #6b7480;
    --header_nav__hover_clr: #303030;
    --header_logo__clr: #303030;
    --header_profile__clr: #303030;
    --header_profile__menu-bg: #ffffff;

    /* Primary/secondary colors - dark neutrals like FreeScout */
    --primary: #303030;
    --secondary: #6b7480;
    --tertiary: #303030;

    /* Font colors */
    --font__pri-clr: #303030;
    --font__sec-clr: #6b7480;

    /* Links */
    --link__pri-clr: #6b7480;
    --link__pri-hover-clr: #303030;

    /* Icon circles */
    --icon_circle__clr: #ffffff;
    --icon_circle__bg: #6b7480;

    /* Input fields - white background, gray border */
    --input-bg: #ffffff;
    --input-clr: #303030;

    /* Button colors - outlined/ghost style */
    --btn__bg-clr-pri: transparent;
    --btn__clr-pri: #303030;
    --btn__border-clr-pri: #303030;

    /* Search bar */
    --search__bg: #f5f5f5;
    --search__title-clr: #303030;
}