/* Optimization for vertical space */
.terminal-container {
     max-height: 100vh;
     overflow: hidden;
}

.screen {
     max-height: 85vh;
}

.content {
     padding: 15px;
     box-sizing: border-box;
     display: flex;
     flex-direction: column;
     height: 100%;
}

/* Reduce some vertical spacing */
.nav-menu {
     margin: 15px 0;
}

.controls {
     margin-top: auto;
     padding-bottom: 15px;
     display: flex;
     justify-content: space-between;
     gap: 15px;
}

.stats-display {
     margin: 10px 0;
}

/* Make sure buttons are properly sized */
button {
     padding: 6px 10px;
     margin: 5px;
}

/* Ensure timer display has appropriate size */
#timer-display {
     font-size: 2.5em;
     margin: 20px 0;
}

/* Fix for modal content */
.settings-panel,
.analytics-panel {
     overflow-y: auto;
     max-height: 60vh;
}