:root {
    --bg1: #131728;
    --bg2: #18213b;
    --accent: #60a5fa;
    --muted: #94a3b8;
    --glass: rgba(255, 255, 255, 0.03);
}

body {
    min-height:100vh;
    margin: 0;
    padding: 20px;
    font-family: Inter, ui-sans-serif, system-ui, "Segoe UI", Roboto, Arial, sans-serif;
    background: linear-gradient(180deg, var(--bg1) 0%, var(--bg2) 100%);
    color: #e6eef8;
}

h1 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 28px;
    font-weight: 700;
    margin-bottom:10px;
}

label {
    display: block;
    margin: 10px 0 4px;
    font-size: 18px;
    color: var(--muted);
    margin-bottom:10px;
}

input {
    padding: 8px 10px;
    font-size: 18px;
    color: inherit;

    background: var(--glass);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
    box-sizing: border-box;
    margin-top:10px;
    margin-bottom:10px;
}

button {
    margin-top: 10px;
    padding: 8px 14px;
    font-size: 18px;
    font-weight: 600;

    color: inherit;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);

    cursor: pointer;
    user-select: none;
    transition: background-color 0.12s ease, border-color 0.12s ease;
    margin-bottom:10px;
}

button:hover {
    background-color: rgba(96, 165, 250, 0.10);
    border-color: rgba(96, 165, 250, 0.18);
}

button:focus-visible {
    outline: 2px solid rgba(96, 165, 250, 0.25);
    outline-offset: 2px;
}

.error {
    color: #f97373;
    margin-top: 8px;
    font-size: 18px;
}

#results1,
#results2 {
    margin-top: 10px;
    padding: 0;
    background: none;
    border-radius: 0;
    font-size: 18px;
}

#results1 dl,
#results2 dl {
    margin: 0;
    padding: 0;
}

#results1 dt,
#results2 dt {
    font-size: 17px;
    font-weight: 600;
    color: var(--muted);
    margin-top: 10px;
    margin-bottom: 10px;
}

#results1 dd,
#results2 dd {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    padding: 6px 10px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.08);
}

#results1 dt:first-child,
#results2 dt:first-child {
    margin-top: 0;
}

.container {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 20px;
}

.panel {
    flex: 1;
    background: rgba(255,255,255,0.03);
    padding: 20px;
    border-radius: 12px;
}

@media (max-width: 900px) {
    .container {
        flex-direction: column;
    }
}

.container {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.panel {
    flex: 1;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 20px 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);

    align-self: flex-start;
}

