:root {
    --top-bar-height: 30px;
}

body {
    margin: 0;
}

.top-bar * {
    color: var(--fg-color);
}

.top-bar {
    --glass-color: var(--ui-color-1);
    --glass-opacity: 1px;
    font-family: monospace;
    height: var(--top-bar-height);
    position: fixed;
    top: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    box-sizing: border-box;
    border-radius: 15px;
    transition: 400ms;
    animation: ease-out;
}

.top-bar:hover {
    transform: scale(1.01);
}

.top-bar-right {
    position: absolute;
    right: 16px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.top-bar-left {
    position: absolute;
    left: 16px;
    display: flex;
    gap: 8px;
    align-items: center;
}

/* .clock {
    width: calc(var(--top-bar-height) - 15px);
    height: calc(var(--top-bar-height) - 15px);
    border-radius: 50%;
    border: 1px solid white;
}

.clock .line-hour {
    width: 5px;
    height: calc(var(--top-bar-height) - 24px);
    left: calc(var(--top-bar-height) - 21px);
    border-bottom: 1px solid white;
    position: absolute;

    transform-origin: bottom left;
    animation: spin 1s linear infinite;

}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
} */