body {
    margin: 0;
    padding: 0 !important;
    font-family: Arial, sans-serif;
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

body.dark-theme {
    background-color: #1e1e1e;
    color: white;
}

body.light-theme {
    background-color: #ffffff;
    color: #000000;
}

.browser {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    background-color: #fff;
}

.address-bar {
    display: flex;
    padding: 10px;
    background-color: #1e1e1e;
    color: white;
    position: relative;
    z-index: 1000;
    border-radius: 0;
    border: 1px solid #333;
    height: 50px;
}

.address-bar.light-theme {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #cccccc;
}

.address-bar.hidden {
    display: none;
}

#back-button, #forward-button, #home-button, #refresh-button, #burger-menu {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    margin-right: 10px;
}

#back-button, #forward-button, #home-button, #refresh-button, #burger-menu {
    color: white;
}

.address-bar.light-theme #back-button, 
.address-bar.light-theme #forward-button, 
.address-bar.light-theme #home-button, 
.address-bar.light-theme #refresh-button, 
.address-bar.light-theme #burger-menu {
    color: #000000;
}

#back-button:disabled, #forward-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#burger-menu {
    margin-left: 10px;
}

#burger-menu-options {
    position: absolute;
    top: 50px;
    right: 10px;
    background-color: #333;
    border: 1px solid #fff;
    display: none;
    flex-direction: column;
    border-radius: 4px;
}

#burger-menu-options.light-theme {
    background-color: #ffffff;
    border: 1px solid #cccccc;
    color: #000000;
}

#burger-menu-options button {
    background: none;
    border: none;
    color: white;
    padding: 10px;
    cursor: pointer;
}

#burger-menu-options.light-theme button {
    color: #000000;
}

#burger-menu-options button:hover {
    background-color: #ffa500;
}

#burger-menu-options.light-theme button:hover {
    background-color: #ffa500;
}

#burger-menu-options.hidden {
    display: none;
}

#address-input {
    flex: 1;
    padding: 8px;
    font-size: 18px;
    border: none;
    background-color: #333;
    color: white;
    border-radius: 0;
    outline: none;
    text-align: center;
}

.address-bar.light-theme #address-input {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #cccccc;
}

#iframe-container {
    flex: 1;
    overflow: hidden;
    position: relative;
}

#content-area {
    width: 100%;
    height: 100%;
    border: none;
}

#content-area.fullscreen {
    padding: 0;
    top: 0;
}

#console-container {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1001;
}

#log {
    padding: 10px;
    font-family: "Courier New", Courier, monospace;
    white-space: pre-wrap;
    height: 100px;
    overflow-y: auto;
    background-color: #000;
    color: #ffa500;
}

#log.hidden {
    display: none;
}
