@charset "UTF-8";

/* CSS Variables */
:root {
    --corner-radius: 10px;
    --spacing: 20px;
    --padding: 30px;
    --gap: 15px;
    --primary-color: #0099cc;
    --secondary-color: #2ecc71;
    --background-color-light: #ecf0f1;
    --background-color-dark: #1a242f;
    --text-color: #2c3e50;
    --text-color-dark: #1a242f;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition-speed: 0.3s;
}

/* Global Box-Sizing */
html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*, *:before, *:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}

/* Base Styles */
body {
    background-color: var(--background-color-light);
}

body, :host {
    color: var(--text-color-dark);
    font-family: "calibri", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    padding: 0;
}

.spa-html {
    height: 100%;
}

.spa-body {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.spa-white {
    background-color: white;
}

.spa-body > :first-child {
    flex: 1;
}

/* Headings */
h1, h2, h3, h4 {
    color: var(--text-color);
}

h1 {
    font-size: 2.5em;
}

h2 {
    font-size: 2em;
}

h3 {
    font-size: 1.75em;
}

h4 {
    font-size: 1.5em;
}

/* Paragraph */
p {
    font-size: 1em;
    color: var(--text-color-dark);
}

.tiny-light {
    color: gray;
    font-size: 0.75em;
}

a {
    color: var(--secondary-color);
}

.line-separator {
    background-color: var(--secondary-color);
    display: block;
    width: 120px;
    height: 2px;
    margin: 10px 0;
    align-self: flex-start;
}

.line-separator-full {
    background-color: var(--secondary-color);
    display: block;
    width: 100%;
    height: 2px;
    margin: 10px 0;
    align-self: flex-start;
}

.btn-primary {
    text-align: center;

    font-size: 1.3em;
    color: white;
    background-color: var(--primary-color);
    padding: 5px 20px;
    border-radius: 50px;
    box-shadow: var(--box-shadow);
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.btn-secondary {
    text-align: center;

    font-size: 1.3em;
    color: white;
    background-color: var(--secondary-color);
    padding: 5px 20px;
    border-radius: 50px;
    box-shadow: var(--box-shadow);
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.btn-neutral {
    text-align: center;

    font-size: 1.3em;
    color: var(--text-color-dark);
    background-color: white;
    padding: 5px 20px;
    border-radius: 50px;
    box-shadow: var(--box-shadow);
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.hidden {
    display: none !important;
}

.disabled {
    pointer-events: none;
    opacity: 0.5;
    user-select: none;
    filter: grayscale(100%);
}

.noselect {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.flx-rsz {
    flex: 1;
    width: 100%;
    height: 100%;
}

.flx-cntr {
    align-self: center;
}

.flx-strt {
    align-self: flex-start;
}

.flx-end {
    align-self: flex-end;
}