html, body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    height: 100vh;
    overflow: hidden;
    background-color: #1e1e1e;
    color: #cccccc;
}

.app-wrapper {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100vw;
}

.top-bar {
    height: 35px;
    background-color: #3c3c3c;
    display: flex;
    align-items: center;
    padding: 0 10px;
    font-size: 13px;
    user-select: none;
    flex-shrink: 0;
}

.main-body {
    display: flex;
    flex-grow: 1;
    overflow: hidden;
}

.content-area {
    flex-grow: 1;
    overflow: hidden;
    background-color: #1e1e1e;
    position: relative;
    display: flex;
    flex-direction: column;
}

.status-bar {
    height: 22px;
    background-color: #007acc;
    color: white;
    display: flex;
    align-items: center;
    padding: 0 10px;
    font-size: 12px;
    flex-shrink: 0;
}

.title-bar-text {
    margin-left: auto;
    margin-right: auto;
    color: #999;
    font-size: 12px;
}

.text-muted {
    color: #aaaaaa !important;
}

/* Custom Scrollbars */
* {
    scrollbar-width: thin;
    scrollbar-color: #444 #1e1e1e;
}

::-webkit-scrollbar { 
    height: 10px; 
    width: 10px; 
}
::-webkit-scrollbar-track { 
    background: #1e1e1e; 
}
::-webkit-scrollbar-thumb { 
    background: #444; 
    border-radius: 5px; 
    border: 2px solid #1e1e1e; 
}
::-webkit-scrollbar-thumb:hover { 
    background: #666; 
}