/* 1920x1080 */
* {
    font-family: sans-serif;
    color: #509E3F;
}

body {
    background-color: #111111;
}

div.btn {
    border: 1px solid #509E3F;
    padding: 5px;
    margin: 2px;
    cursor: pointer;
    width: 150px;
    background-color: #222;
    transition: background-color 0.3s ease;
}
div.btn:hover {
    background-color: #FF8C00;
    color: #111111;
}
div.btn.on {
    background-color: #509E3F;
    color: #111111;
}
#zbox.home {
    position: fixed;
    top: 100px;
    left: 280px; /* Adjusted to account for sidebar width */
    width: calc(100% - 280px); /* Adjusted to account for sidebar width */
    height: calc(100% - 100px);
    border: 1px solid #509E3F;
    overflow: hidden;
}

#zbox.full {
    position: fixed;
    top: 150px;
    left: 0px;
    height: calc(100% - 150px);
    width: 100%;
    overflow: hidden;
    border-top: rgba(80, 158, 63, 0.2) 1px solid;
}

.actor-controls-box {
    padding: 10px;
    display: flex;
    flex-wrap: wrap; /* Allow controls to wrap if needed */
}

/* Added styles for the main content container */
.main-content {
    margin-left: 280px; /* Match the sidebar width */
}

.main-content h1 {
    padding: 10px;
    margin-top: 10px;
}
