body {
    font-family: 'Web UI Sans', sans-serif;
    padding: 2rem;
    background: #f7f7f7;
}

h1 {
    text-align: center;
}

.container {
    max-width: 600px;
    margin: auto;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

label {
    display: block;
    margin-top: 1rem;
    margin-bottom: 0.3rem;
    font-weight: bold;
}

input, select, textarea {
    font-family: 'Web UI Sans', sans-serif;
    width: 100%;
    padding: 0.5rem;
    font-size: 1rem;
    border-radius: 6px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

textarea {
    height: 150px;
    resize: vertical;
}

.dropdown {
    position: relative;
}

.options {
    position: absolute;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ccc;
    border-top: none;
    background: white;
    z-index: 1000;
    display: none;
}

.option {
    padding: 0.5rem;
    cursor: pointer;
}

.option:hover, .option.active {
    background-color: #f0f0f0;
}
