/* Basic styles for the application */
html {
    --lumo-primary-color: #1676f3;
    --lumo-primary-text-color: #1676f3;
}

/* Main layout */
.main-layout {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Header */
.header {
    padding: 1rem;
    background-color: #1676f3;
    color: white;
}

/* Content */
.content {
    flex: 1;
    padding: 1rem;
}

/* Footer */
.footer {
    padding: 1rem;
    background-color: #f5f5f5;
    text-align: center;
}

/* Custom styles for the application */
h1 {
    margin-top: 0;
}

/* Responsive styles */
@media (max-width: 800px) {
    .header, .content, .footer {
        padding: 0.5rem;
    }
}
