/* ==============================================
   PGRBuilder - Layout Styles
   ============================================== */

/* 
   Top Navigation Bar 
   ----------------------------------------------
   Fixed header at the top of the screen.
*/
.top-nav {
    width: 100%;
    height: 40px;
    background-color: #000;
    border-bottom: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    font-family: var(--font-header);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    position: fixed;
    top: 0;
    z-index: 100;
}

.nav-left span {
    color: var(--accent-red);
    margin-right: 10px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-tech);
    color: var(--text-dim);
    font-size: 0.75rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #00ff00;
    /* Green active status */
    border-radius: 50%;
    box-shadow: 0 0 5px #00ff00;
    /* Glow effect */
}

/* 
   Main Application Container 
   ----------------------------------------------
   Grid layout holding the Left (Character) and Right (Build) panels.
*/
.app-container {
    margin-top: 60px;
    /* Offset for fixed header */
    display: grid;
    grid-template-columns: 400px 1fr;
    /* Fixed 400px Left Panel, Fluid Right Panel */
    gap: 40px;
    width: 95%;
    max-width: 1800px;
    margin-bottom: 40px;
    position: relative;
}

/* 
   Decorative Corner Brackets 
   ----------------------------------------------
   Purely visual elements adding a "tech" look to the corners of the page.
*/
.page-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid #333;
    pointer-events: none;
}

.pc-tl {
    top: -10px;
    left: -10px;
    border-right: none;
    border-bottom: none;
}

.pc-tr {
    top: -10px;
    right: -10px;
    border-left: none;
    border-bottom: none;
}

.pc-bl {
    bottom: -10px;
    left: -10px;
    border-right: none;
    border-top: none;
}

.pc-br {
    bottom: -10px;
    right: -10px;
    border-left: none;
    border-top: none;
}