﻿
:root {
    --Vrangle-Purple: #5f1795;
    --Vrangle-Blue: #bcd5df;
    --Vrangle-LightGrey: #f9fafb;
    --Vrangle-Grey: #f3f4f7;
    --Vrangle-DarkerGrey: #d2d2d8;
}

html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

input[type="text"], input[type="password"], input[type="number"], select {
    padding: 5px;
    height: 35px;
    min-width: 200px;
}

a {
    text-decoration: none;   
}

    a:visited {
        text-decoration: none;
    }

button, input[type=button], input[type=submit], input[type=reset] {
    background-color: var(--Vrangle-Blue);
    border-radius: 35px;
    border: none;
    color: black;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    transition: all linear 0.2s;
    margin: 5px;
    min-width: 120px;
    min-height: 40px;
    padding: 8px;
}

    button:hover, input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover {
        transform: scale(1.06);
    }

#app {
    width: 100%;
    height: 100%;
    margin: 0;
}

.VranglePageContainerHCenter1600 {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    max-width: 1600px;
}

.VranglePageContainerHVCenter1600 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    max-width: 1600px;
}

.VranglePageContainerHCenter {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
}

.VranglePageContainerHVCenter {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.Selectable {
    cursor: pointer;
}

.Error {
    color: red;
    font-size: 14px;
    margin-top: 10px;
}

.PageContent {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0;
    margin: 0;
}

.Dialog {
    display: flex;
    background-color: white;
    color: black;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 800px;
    padding: 10px;
    gap: 10px;
}

.ToolBarButton {
    cursor: pointer;
    border: 1px solid black;
    border-radius: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 15px;
    padding-right: 15px;
    background-color: var(--Vrangle-Purple);
    color: white;
    min-width: 150px;