* {
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

input:focus {
    outline: none;
    border: none;
}

.container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    position: relative;
}

.toolbar {
    width: 100%;
    height: 40px;
    display: flex;
    flex-direction: row;
    background: #ededed;
    gap: 10px;
    padding: 0 16px;
    user-select: none;
}

.toolbar>.item {
    color: black;
    display: flex;
    height: 100%;
    width: auto;
    justify-content: center;
    align-items: center;
    gap: 6px;
    position: relative;
}

.toolbar>.item>img {
    width: 14px;
    height: 14px;
}

.toolbar>.item:hover {
    cursor: pointer;
}

.toolbar>.item:hover span.shortcut {
    text-decoration: underline;
}

.overlay {
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: fixed;
    z-index: 1000;
    background: #00000073;
    display: none;
    justify-content: center;
    align-items: center;
}

.overlay.active {
    display: flex;
}

.loader {
    width: 48px;
    height: 48px;
    border: 5px solid #FFF;
    border-bottom-color: #31e867;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}