body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(#606060, #606060);
    color: #eee;
}

header {
    background-color: #080808;
    padding: 8px 8px 2px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

#tabs {
    display: flex;
    overflow-x: scroll;
    border-radius: 8px;
    padding: 0 0 2px;
}

#tabs .tab {
    padding: 0;
    margin-right: 8px;
    background-color: #80808010;
    opacity: 0.75;
    border-radius: 7px;
    cursor: pointer;
    display: flex;
    max-width: 150px;
    min-width: 72px;
    overflow: hidden;
    height: 32px;
    align-items: center;
}

#tabs .tab.active {
    background-color: #80808030;
    opacity: 1 !important;
}

#tabs .tab .title {
    color: #eee;
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin: 0 8px;
}

.close-btn.material-icons {
    font-size: 16px;
    font-weight: 600;
    color: #eee;
    background: transparent;
    height: 16px;
    width: 16px;
    padding: 4px;
    border-radius: 14px;
    user-select: none;
    text-align: center;
    align-content: center;
}

#tabs .tab .close-btn {
    margin: 0 4px;
    cursor: pointer;
}

#navBar {
    background-color: #080808;
    padding: 0px 8px 8px;
    display: flex;
    align-items: center;
}

#navButtons {
    display: flex;
    align-items: center;
    width: 100%;
    background: #80808030;
    border-radius: 8px;
    height: 42px;
    padding: 0 8px;
}

#navBar button {
    cursor: default;
    background: none;
    border: none;
    font-size: 20px;
    color: #fff;
}

button:disabled {
    opacity: 0.25;
}

#addressBarContainer {
    display: flex;
    align-items: center;
    width: 100%;
    height: 32px;
    background: #10101080;
    border-radius: 8px;
    margin: 0 8px;
}

#addressBarContainer:focus-within {
    background: #101010;
    color: #eee;
}

#addressBarContainer button#lockButton, #addressBarContainer button#favoriteButton {
    /* margin-right: 0 !important; */
    font-size: 16px;
    width: 16px !important;
    height: 16px !important;
    color: #ccc;
    cursor: default;
    padding: 0 !important;
    margin: 0 8px 0 8px;
}

#addressBar {
    flex: 1;
    padding: 8px 0px;
    font-size: 14px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: #ffffff90;
}

#addressBar:focus {
    outline: none;
}

#addressBar::placeholder {
    color: #80808080;
}

button#addTabButton {
    height: 32px;
    width: 32px;
    padding: 4px;
    color: #fff;
    background: #80808030;
    border: none;
    border-radius: 8px;
    margin-left: 8px;
}

main {
    height: calc(100vh - 98px);
    overflow: hidden;
    position: relative;
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: none;
}

html {
    color: #eee;
    font-family: monospace;
}

/* SCROLLBAR */
#tabs::-webkit-scrollbar {
    width: 2px;
    height: 4px;
    background: transparent;
}
/* TRACK */
#tabs::-webkit-scrollbar-track {
    border-radius: 0;
    margin: 8px;
}
/* HANDLE */
#tabs::-webkit-scrollbar-thumb {
    background: #222;
    border-radius: 10px;
    border: 0px solid #080808;
}
/* HANDLE: HOVER */
#tabs::-webkit-scrollbar-thumb:hover {
    background: #333; 
}
/* CORNER */
#tabs::-webkit-scrollbar-corner {
    background: #111;
}