/* Base styles and reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Maple Mono', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: 100%;
    min-width: 1200px;
    max-width: 100vw;
    margin: 0 auto;
    padding: 20px;
    overflow-x: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Header styles */
header {
    text-align: left;
    margin-bottom: 10px;
    padding: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: baseline;
    gap: 10px;
}

header h1 {
    font-size: 2rem;
    margin: 0;
}

header p {
    font-size: 0.8rem;
    opacity: 0.9;
    margin: 0;
}

/* Main layout */
main {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    color: #666;
    border-top: 1px solid #e1e5e9;
    clear: both;
    width: 100%;
    position: relative;
    margin-top: auto;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
