#tabs {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: rgba(20,20,23,.95);
    align-items: center;
    gap: 10px;
    padding: 0 18px;
    z-index: 50;
}

#tabs button {
    background: transparent;
    border: none;
    color: #a1a1aa;
    font-size: 22px;
    cursor: pointer;
    width: 40px;
    height: 40px;
}

#searchToolbar {
    flex: 1;
    height: 40px;
    background: rgba(0,0,0,.5);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.1);
    padding: 0 16px;
    color: #fff;
    font-size: 17px;
    outline: none;
}

#frame {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100% - 60px);
    border: none;
    display: none;
}

.loader {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 48px;
    height: 48px;
    transform: translate(-50%,-50%);
    border: 5px solid #fff;
    border-bottom-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 1000;
}


@keyframes spin {
    to { transform: translate(-50%,-50%) rotate(360deg) }
}