@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

body {
    font-family: 'Rubik','Inter','Roboto','Open Sans', 'Helvetica Neue', sans-serif !important;
    margin: 0;
    padding: 0;
    display: flex;
    background-color: rgb(226, 226, 226);
    flex-direction: column;
    align-items: center;
}
.login{
    display:flex;
    width: 100%;
    height:100%;
    position: absolute;
    background:#004080b0;
    top:0;
    left:0;
    z-index:1000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}
.login > div{
    background: white;
    padding:20px;
    border-radius:10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display:flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.login > div > div{
    display:flex;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: nowrap;
}

.login-form{
    display:flex;
    flex-direction: column;
    align-items: center;
    width:300px;
    flex-shrink: 0;
    overflow: hidden;
}
.login img{
    height:25px;
    width:auto;
}
#loginForm{
    display:flex;
    flex-direction: column;
    align-items: center;
    margin-top:10px;
}
#loginForm input{
    margin:5px;
    padding:8px;
    width:200px;
    font-size:12pt;
    box-sizing: border-box;
    text-align: center;
}
#loginForm button{
    width:200px;
    margin-top:10px;
    font-size:12pt;
    cursor: pointer;
}

.login-greeting{
    display:flex;
    flex-direction: column;
    align-items: center;
    color: #004080;
    text-align: center;
    flex-shrink: 0;
    width:300px;
    flex-wrap: nowrap;
    overflow: hidden;
}
.user-initials-loginform {
    background-color: #004080;
    color: white;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36pt;
    border: 2px solid white;
    box-sizing: border-box;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    margin-bottom:20px;
    flex-shrink: 0;
}
.user-name-loginform {
    font-size: 24pt;
    font-weight: bold;
    color: #004080;
}
.user-role-loginform {
    font-size: 18pt;
    color: #666;
    font-size: 10pt;
}
.user-company-loginform {
    font-size: 16pt;
    color: #999;
    margin-bottom: 20px;
    font-size:8pt;
}

.topbar {
    width: 80%;
    min-width: 800px;
    max-width: 1800px;
    background-color: #004080;
    background-image: linear-gradient(135deg, #b8dcff 0%, #004080 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    padding: 10px 0;
}

.logo {
    display: flex;
    align-items: center;
    margin-left: 16px;
}
.logo img{
    height:16px;
    width:auto;
}
.nav a{
    color: white;
    text-decoration: none;
    margin: 0 5px;
    font-size: 12pt;
}
.user-info {
    display: flex;
    align-items: center;
    margin-right: 16px;
    cursor:pointer;
    user-select: none;
}
.user-initials {
    background-color: #004080;
    color: white;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size:14px;
    margin-right: 5px;
    border:1px solid white;
    box-sizing: border-box;
    flex-shrink: 0;
}
.user-name{
    font-size: 10pt;
    color: white;
    white-space: nowrap;
}
.container {
    width: 80%;
    min-width: 800px;
    max-width: 1800px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    font-size:12pt;
    padding-bottom:20px;
}

.section {
    background-color: white;
    padding: 20px;
    margin: 20px 20px 0 20px;
    border-radius: 10px;
}

.footer {
    width: 80%;
    min-width: 800px;
    max-width: 1800px;
    background-color: #004080;
    color: white;
    text-align: center;
    padding: 10px 0;
    border-radius: 0 0 10px 10px;
    font-size:10pt;
}

table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid black;
    border-radius: 8px;
}

table th{
    border: 1px solid black;
    padding: 8px;
    background-color: #f2f2f2;
    text-align: left;
    text-transform: uppercase;
}
table td {
    border: 1px solid black;
    padding: 8px;
    text-align: left;
}

label{
    display: inline-block;
    font-weight: bold;
    margin-top: 10px;
}
input, select, button{
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-size: 10pt;
}