/* --- Base Styles --- */

body { 
    background: #1f1f1f; 
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; 
    font-size: 16px;
    line-height: 1.5;
    color: #000000; 
    min-height: 100vh;
    margin: 0;
}

/* --- Layout Containers --- */

.outer-container {
    max-width: 960px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.inner-container {
    max-width: 940px;
    margin: 0 auto;
    flex-grow: 1;
    padding: 2rem;
    background: #ffffff;
    color: #000000;
}

/* --- Components --- */

header, footer { 
    background: #ffffff; 
    border-bottom: 1px solid #e0e0e0; 
    padding: 1rem 0;
}

hr {
    margin: 0.5rem 0;
    border: 0;
    border-top: 1px solid #e0e0e0;
}

.alert-info { 
    background: #cce5ff; 
    border-color: #b8daff; 
    color: #000000;
}

/* --- Authentication Status --- */

.auth-success { color: #198754 !important; }
.auth-danger { color: #dc3545 !important; }
.auth-pipe-username { color: #000000 !important; }
