/** 
    Terbium UI v2 Generic CSS
    (C) Copyright 2024 TerbiumOS Group
    Licensed under the Apache 2.0 License
*/

@font-face {
    font-family: Inter;
    src: url(/fonts/inter.ttf);
}

:root {
    --sidebar-width: calc(250px - 40px);
    --gaps: 8px;
}

h1 {
    font-weight: 700;
}

h4 {
    margin-top: 4px;
    margin-bottom: 4px;
}

.image-container {
    width: 100px;
}

.centered-image {
    max-width: 100%;
    max-height: 100%;
}

a {
    color: #5088ff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}

body {
    display: flex;
    position: relative;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #ffffff07;
}

button {
    background-color: #ffffff20;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 150ms ease-in-out;
}

input {
    background-color: #ffffff20;
    color: #d3d3d3;
    width: calc(100% - 12px);
    padding: 8px 0px 8px 12px;
    border: none;
    border-radius: 6px;
    outline: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 150ms ease-in-out 0s;
}

select {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: min-content;
    backdrop-filter: blur(100px);
    background-color: rgba(255, 255, 255, 0.125);
}

.options {
    position: absolute;
    top: calc(100% + 6px);
    z-index: 9;
    left: 0px;
    width: 100%;
    max-height: 160px;
    display: flex;
    flex-direction: column;
    border-radius: 6px;
    backdrop-filter: blur(100px);
    background-color: rgba(255, 255, 255, 0.125);
    overflow: auto;
    transition: all 150ms ease-in-out 0s;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-thumb {
    background-color: #ffffff28;
    border-radius: 8px;
}

::-webkit-scrollbar-track {
    background-color: #ffffff10;
    border-radius: 8px;
}
