/**
 * Webclient Control Bar Styles
 * 
 * Top control bar with persistent buttons (Dashboard toggle, etc.)
 */

.webclient-control-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 35px;
    background: #1a1a1a;
    border-bottom: 1px solid #333;
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 10px;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.webclient-control-bar button {
    background: #2a2a2a;
    border: 1px solid #444;
    color: #aaa;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.webclient-control-bar button:hover {
    background: #333;
    color: #fff;
    border-color: #555;
}

.webclient-control-bar button.active {
    background: #0d6efd;
    border-color: #0d6efd;
    color: #fff;
}

.webclient-control-bar button i {
    font-size: 14px;
}

/* Adjust GoldenLayout container to account for control bar */
#main-sub {
    position: absolute !important;
    top: 35px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    height: auto !important;
}