#title-bar {
    background-color: #0c151c;
    padding: 0 5px;
    position: fixed;
    width: 100%;
    height: 25px;
    -webkit-app-region: drag;
}

#title-bar-btns {
    position: fixed;
    right: 0;
    height: 25px;
    display: flex;
    align-items: center;
    width: fit-content;
    justify-content: flex-end;
}

#title-bar-btns button {
    padding: 0 !important;
    margin: 5px;
    -webkit-app-region: no-drag;
}

#close-btn {
    width: 15px;
    height: 15px;
    background: azure !important;
    border-radius: 50%;
}

#close-btn:hover {
    background: #c53737 !important;
    transition: 0.2s;
}

#max-btn {
    width: 15px;
    height: 15px;
    background: azure !important;
    border-radius: 50%;
}

#max-btn:hover {
    border-radius: 25%;
    transition: 0.2s;
}

#min-btn {
    width: 15px;
    height: 15px;
    background: azure !important;
    border-radius: 50%;
}

#min-btn:hover {
    border-radius: 25%;
    height: 6px;
    transition: 0.2s;
}