@font-face {
    font-family: 'Soehne';
    src: url('../fonts/soehne-buch.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

:root{
    --bg-primary:#EEEEEE;
    --bg-hover:#00000008;
    --text-primary:#1E1E1E;
    --text-secondary:#9F9F9F;
    --text-tertiary:#8f8f8f1f;
    --divider:#E9E9E9;
    --btn-primary:#E9E9E9;
    --global-green:#1AD137;
    --global-red:#BB1C1C;
}

  
html, body {
    font-family: 'Soehne', sans-serif;
    font-size: 12px;
    margin: 0;
    padding: 0;
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

a {
    color: inherit; /* Inherit the color from the parent element */
    background-color: transparent; /* Make the background transparent */
    cursor: pointer; /* Change the cursor to a pointer when hovering over the link */
}

.disable-text-select{
    user-select: none; /* Standard syntax */
    -webkit-user-select: none; /* Safari 3.1+ */
    -moz-user-select: none; /* Firefox 2+ */
    -ms-user-select: none; /* IE 10+ */
}