/* Add any custom styles here */
html, body {
    height: 100vh;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1 0 auto;
    padding-bottom: 4rem; /* This creates space for the fixed footer */
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
    padding: 1rem 0;
}

.prose {
    max-width: 100ch;
    margin: 0 auto;
}

/* Theme color indicator styles */
.theme-item {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
}

.theme-item span {
    display: inline-block;
} 