﻿@import "mobile.css" screen and (max-width: 767px);
@import "desktop.css" screen and (min-width: 768px);
/*@import "desktop.css" screen and (min-width: 768px) and (max-witdh: 1023px);*/  /* TODO tablets */
/*@import "desktop.css" screen and (min-width: 1024);*/

@import "buttons.css";
@import "forms.css";
@import "tables.css";
@import "icons.css";
@import "cards.css";
@import "badge.css";
@import "links.css";
@import "modals.css";

@import "page-headers.css";


:root {
    --topbar-height: 3.5rem;
    --page-header-height: 50px;
    --page-header-h1-font-size: 28px;
    --font-size: 16px;
    --font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --hover-bg-color: #f7f7f7;
    --active-bg-color: #e8e8e8;
    --std-border: 1px solid #d5d5d5;
    --link-color: #0060df; /* #3c3eef;*/
}


html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: var(--font-size);
}

h1:focus {
    outline: none;
}

* {
    box-sizing: border-box;
}

.centered {
    display: flex;
    justify-content: center;
}

.content {
    max-width: 600px;
    width: 100%;
    padding: 0.5rem;
}

.narrow-page {
    width: 500px;
    margin: auto;
}

.focus-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}


.lower-part .content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.2rem;
}

.lower-part .content textarea {
    flex: 1;
}

.lower-part .content button {
}



.loading-screen {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 1;
    color: white;
    align-content: center; 
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease-out;
}

.loading-screen h1 {
    font-size: 64px;
}



.snippet em {
    font-weight: bold;
    color: #dd1e1e;
}
