﻿.window-controls-wrapper {
    display: flex;
    flex-direction: row;
    margin-left: auto;
    gap: 1.25em;
    height: 100%;
}

.window-controls-wrapper button,
.neumporphism-round-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--background-white);
    color: var(--black);
    border: none;
    border-radius: 50%;
    box-shadow: var(--neomorphism-small-button-shadow);
    transition: box-shadow 0.1s ease-in-out, transform 0.1s ease-in-out;
    transform-origin: center;
}
    .window-controls-wrapper button svg,
    .neumporphism-round-button svg {
        font-size: 1.2em;
    }
    .window-controls-wrapper button:hover,
    .neumporphism-round-button:hover {
        background-color: var(--hover-gray);
    }
    .window-controls-wrapper button:active,
    .neumporphism-round-button:active {
        box-shadow: var(--neomorphism-small-button-shadow-pressed);
        transform: scale(0.95);
    }
    .window-controls-wrapper button:focus,
    .window-controls-wrapper button:focus-visible,
    .neumporphism-round-button:focus,
    .neumporphism-round-button:focus-visible {
        outline: none;
        background-color: var(--deep-background-color);
    }
    

.top-bar-content {
    display: flex;
    height: 100%;
    flex: 1;
    font-size: 2.8rem;
}