web_ui 0.1.1

A simple Rust library for creating local web interfaces with real-time communication
Documentation
body {
    font-family: 'Noto Sans', Arial, sans-serif;
    background: linear-gradient(120deg, #f8fafc 0%, #89b3cc 100%);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    color: #222222;
}

header {
    background: #4f46e5;
    color: #fff;
    padding: 2rem 0 1rem 0;
    text-align: center;
    box-shadow: 0 2px 8px rgba(79,70,229,0.08);
}

main {
    max-width: 600px;
    margin: 2rem auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(79,70,229,0.08);
    padding: 2rem;
}

h1, h2, h3 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.card {
    background: #f3f4f6;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(79,70,229,0.06);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
}