body {
    font-family: -apple-system, system-ui, sans-serif;
    margin: 0;
    background: #f5f5f7;
    color: #111;
}

.page {
    max-width: 960px;
    margin: 0 auto;
}

.search-header {
    position: sticky;
    top: 0;
    background: #ffffffcc;
    backdrop-filter: blur(10px);
    padding: 16px 24px;
    border-bottom: 1px solid #e5e5ea;
}

.search-form {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.search-form input[type="text"] {
    flex: 1;
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid #d1d1d6;
}

.search-form button {
    padding: 8px 16px;
    border-radius: 8px;
    border: none;
    background: #007aff;
    color: white;
    cursor: pointer;
}

.search-form button:hover {
    background: #0060d1;
}

.error {
    margin-top: 8px;
    padding: 8px 10px;
    border-radius: 6px;
    background: #ff3b3020;
    color: #b00020;
}

.results {
    padding: 16px 24px 48px;
}

.results table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

.results th,
.results td {
    padding: 10px 12px;
    border-bottom: 1px solid #f2f2f7;
}

.results th {
    text-align: left;
    background: #f2f2f7;
    font-weight: 600;
}
