* {
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, sans-serif;
}
body {
    background: #f0f4f8;
    margin: 0;
    padding: 24px;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}
header {
    text-align: center;
    margin-bottom: 32px;
}
h1 { color: #1e3c72; font-size: 2.2rem; margin: 0; }
header p { color: #2c5a6e; }
.card {
    background: white;
    border-radius: 28px;
    padding: 24px 28px;
    margin-bottom: 24px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}
.card h2 {
    margin-top: 0;
    border-bottom: 2px solid #cfdfed;
    padding-bottom: 8px;
}
.input-group { margin-bottom: 20px; }
label { font-weight: 600; display: block; margin-bottom: 8px; }
textarea, input[type="email"], input[type="password"], input[type="file"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #cbd5e1;
    border-radius: 20px;
    font-size: 1rem;
}
button {
    background: #2c5282;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
    margin-top: 8px;
}
button:hover { background: #1a3a5f; }
.results-table {
    width: 100%;
    border-collapse: collapse;
    margin: 12px 0;
}
.results-table th, .results-table td {
    border: 1px solid #e2e8f0;
    padding: 8px;
    text-align: left;
}
.results-table th { background: #eef2fa; }
.history-item {
    background: #f9fafc;
    border-radius: 16px;
    padding: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    border: 1px solid #e2e8f0;
}
.history-item:hover { background: #eef2ff; }