#quickfix-form-wrap {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.qf-field { margin-bottom: 1.25rem; }
.qf-field label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
    color: #e0e0e0;
    font-size: 0.95rem;
}
.qf-req { color: #F8C649; }
.qf-opt { color: #888; font-weight: 400; font-size: 0.85rem; }
.qf-field input,
.qf-field select,
.qf-field textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #333;
    border-radius: 6px;
    background: #1a1a1a;
    color: #e0e0e0;
    font-size: 1rem;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.qf-field input:focus,
.qf-field select:focus,
.qf-field textarea:focus {
    outline: none;
    border-color: #1C8C34;
    box-shadow: 0 0 0 2px rgba(28, 140, 52, 0.25);
}
.qf-field select { cursor: pointer; }
.qf-field textarea { resize: vertical; min-height: 120px; }
.qf-btn {
    display: inline-block;
    padding: 0.85rem 2.5rem;
    background: #1C8C34;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    width: 100%;
}
.qf-btn:hover { background: #166d28; }
.qf-btn:active { transform: scale(0.98); }
.qf-btn:disabled { background: #444; cursor: not-allowed; }
.qf-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 6px;
    font-size: 0.95rem;
}
.qf-success { background: rgba(28, 140, 52, 0.15); color: #4ade80; border: 1px solid #1C8C34; }
.qf-error { background: rgba(220, 38, 38, 0.15); color: #f87171; border: 1px solid #dc2626; }
@media (max-width: 640px) {
    #quickfix-form-wrap { padding: 1rem; }
}
