body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f3f4f6;
    color: #1f2937;
    margin: 0;
    padding: 10px;
}
.container {
    max-width: 600px;
    margin: 0 auto;
}
h1 {
    color: #d97706;
    text-align: center;
    margin-top: 5px;
}
.card {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    margin-bottom: 15px;
}
label {
    display: block;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 3px;
    font-size: 14px;
}
input, select, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 16px;
}
button {
    background-color: #d97706;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 16px;
    width: 100%;
    margin-top: 15px;
    cursor: pointer;
}
button:hover {
    background-color: #b45309;
}
.list-item {
    border-bottom: 1px solid #e5e7eb;
    padding: 10px 0;
}
.list-item:last-child {
    border-bottom: none;
}
.badge {
    background-color: #fef3c7;
    color: #92400e;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}
