/* Base styles shared across all pages */
body {
    font-family: system-ui, -apple-system, sans-serif;
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    line-height: 1.6;
}

h1 { 
    margin-bottom: 0.5em; 
}

h2 { 
    margin-top: 2em; 
    margin-bottom: 1em;
    font-size: 1.5em;
}

.stats { 
    color: #666; 
    margin-bottom: 2em; 
}

.back-link { 
    margin-bottom: 2em; 
}

.no-items {
    color: #666;
    font-style: italic;
}

/* Mobile responsive base styles */
@media (max-width: 640px) {
    body {
        margin: 20px auto;
        padding: 0 15px;
    }
    h1 {
        font-size: 1.5em;
    }
    h2 {
        font-size: 1.3em;
    }
}


/* Button styles */
.action-buttons {
    margin: 15px 0;
}

.button, .button-small {
    display: inline-block;
    padding: 8px 16px;
    margin-right: 8px;
    background: white;
    border: 1px solid #ddd;
    color: #333;
    text-decoration: none;
    cursor: pointer;
}

.button:hover, .button-small:hover {
    background: #f5f5f5;
    text-decoration: none;
}

.button-small {
    padding: 4px 10px;
    font-size: 0.9em;
    margin-left: 8px;
}
