/* Game layout and header styles */
#game-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

#game-header {
    background: #2c3e50;
    color: white;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: background 2s ease-in-out;
}

body.night #game-header {
    background: #1a1a2e;
}

.business-name {
    color: white;
    font-size: 1.5rem;
    text-align: center;
    margin: 0 0 1rem 0;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.stats-panel {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
}

.stat {
    text-align: center;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.stat-value {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
}

.time-cycle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #f39c12;
    font-size: 0.9rem;
}

.time-icon {
    font-size: 1.2rem;
}

#game-main {
    flex: 1;
    display: flex;
    gap: 2rem;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

#building-view {
    flex: 2;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.building-container {
    position: relative;
}

#control-panel {
    flex: 1;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 1.5rem;
    height: fit-content;
}

.panel-section {
    margin-bottom: 2rem;
}

.panel-section h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1rem;
}

#daily-report {
    background: #ecf0f1;
    padding: 1rem;
    border-radius: 4px;
}

.report-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.report-item:last-child {
    margin-bottom: 0;
}