/* =============================================================================
   app-layout.css - App Container and Header
   ============================================================================= */

/* App Layout */
.app-container {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    padding: 15px 30px;
    margin: 0;
    height: 70px;
    box-sizing: border-box;
    flex-shrink: 0;
}

.app-title {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.app-title h1 {
    font-size: 1.8em;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1;
}

.app-title p {
    font-size: 0.9em;
    margin: 0;
    opacity: 0.9;
    line-height: 1;
}

/* Legacy header styles for backwards compatibility */
.header {
    text-align: center;
    margin-bottom: 40px;
    color: white;
}

.header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.header p {
    font-size: 1.2em;
    opacity: 0.9;
}