.browser-address-bar {
    display: flex;
    padding: 8px;
    background-color: #333;
    border-bottom: 1px solid #444;
}

.browser-address-bar input {
    flex-grow: 1;
    padding: 6px 10px;
    border: 1px solid #555;
    border-radius: 4px;
    background-color: #444;
    color: white;
    font-size: 14px;
    outline: none;
}

.browser-address-bar input:focus {
    border-color: #0078d4;
}

.browser-address-bar button {
    margin-left: 8px;
    padding: 6px 15px;
    background-color: #0078d4;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s;
}

.browser-address-bar button:hover {
    background-color: #005a9e;
}

.window-content iframe {
    flex-grow: 1;
    border: none;
    width: 100%;
    height: 100%;
    background-color: white; /* Default background for iframe */
}

/* New style for compatibility note */
.browser-compatibility-note {
    text-align: center;
    padding: 10px;
    font-size: 12px;
    color: #aaa;
    background-color: #282828;
    border-top: 1px solid #333;
}

/* Browser Tabs */
.browser-tabs {
    display: flex;
    background-color: #3f3f3f;
    border-bottom: 1px solid #444;
    padding-top: 5px; /* Space from header */
}

.tab-button {
    background-color: #2c2c2c;
    color: #e0e0e0;
    border: none;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    padding: 8px 15px;
    cursor: pointer;
    margin-right: 2px;
    transition: background-color 0.2s;
    font-size: 14px;
}

.tab-button:hover {
    background-color: #3f3f3f;
}

.tab-button.active {
    background-color: #1e1e1e;
    color: white;
    font-weight: bold;
}

.tab-button.active:hover {
    background-color: #1e1e1e; /* Keep active color on hover */
}

.tab-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tab-content.hidden {
    display: none;
}