

/* Toolbar Styles */
.toolbar {
    position: relative;
    height: 100%;
}

.top-toolbar {
    z-index: 100000;
    width: 100%;
    height: 50px;
    background: #1e1e1e;
    position: sticky;
    top: 0;
    right: 0;
    left: 0;
    display: flex;
    justify-content: end;
    align-items: center;
    box-sizing: border-box;
    border-bottom: 2px solid #333;
}

.top-toolbar h2 {
    position: absolute;
    left: 20px;
    font-weight: 500;
    font-size: 1.5rem;
    color: #d9d9d9;
    letter-spacing: 1px;
}

.exit, .minimize, .maximize {
    height: 100%;
    width: 50px;
    padding: 10px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exit:hover {
    background: red;
    cursor: pointer;
}

.minimize:hover, .maximize:hover {
    background: rgba(172, 171, 171, 0.616);
    cursor: pointer;
}
