body {
    font-family: Arial, sans-serif;
    background: #f3f4f6;
    padding: 20px;
}

.container {
    max-width: 600px;
    margin: auto;
}

h1 {
    margin-bottom: 20px;
}

.form-box {
    background: white;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

input, select, button {
    padding: 8px;
    margin: 5px 0;
    width: 100%;
}

button {
    background: #2563eb;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background: #1d4ed8;
}

.card {
    background: white;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.italic {
    font-style: italic;
    color: #555;
}
