.om2026-form {
    max-width: 800px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.om2026-form h3 {
    margin-top: 25px;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 5px;
}
.om2026-form input[type="text"],
.om2026-form input[type="tel"],
.om2026-form input[type="email"],
.om2026-form input[type="date"],
.om2026-form textarea,
.om2026-form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}
.om2026-form textarea { min-height: 80px; resize: vertical; }
.om2026-races label {
    display: block;
    margin-bottom: 6px;
    padding: 6px;
    background: #f5f5f5;
    border-radius: 4px;
    cursor: pointer;
}
.om2026-races label:hover { background: #eef7ff; }
.om2026-crew-block {
    border: 1px dashed #aaa;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 5px;
    position: relative;
    background: #fafafa;
}
.om2026-remove-crew {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #dc3545;
    color: #fff;
    border: none;
    padding: 4px 10px;
    cursor: pointer;
    border-radius: 3px;
    font-size: 12px;
}
.om2026-btn {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    font-size: 15px;
    color: #fff;
}
.om2026-btn-add {
    background: #28a745;
    margin-bottom: 15px;
}
.om2026-btn-submit {
    background: #0073aa;
    width: 100%;
    margin-top: 15px;
    font-size: 16px;
}
.om2026-btn-submit:disabled { background: #999; cursor: not-allowed; }
#om2026-message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 4px;
    display: none;
}
#om2026-message.om2026-success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
#om2026-message.om2026-error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
#om2026-message a {
    color: #155724;
    font-weight: bold;
}

