.flight-registration-container {
    max-width: 100%;
    margin: 0 auto;
}

.fr-user-profile {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.fr-user-profile .avatar img {
    border-radius: 50%;
    display: block;
}

.fr-user-name {
    font-size: 1.25rem;
    font-weight: 700;
}

.fr-user-email {
    opacity: 0.7;
}

.fr-section {
    margin-bottom: 30px;
    padding: 25px;
    border: 1px solid #eee;
    border-radius: 8px;
}

.fr-section h3 {
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.fr-form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.fr-form-group {
    flex: 1;
    min-width: 250px;
    margin-bottom: 15px;
}

.fr-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

.fr-form-group input[type="text"],
.fr-form-group input[type="number"],
.fr-form-group input[type="date"],
.fr-form-group select,
.fr-form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.fr-airplane-options, .fr-danger-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.fr-airplane-option, .fr-danger-option {
    flex: 1;
    min-width: 120px;
    text-align: center;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.fr-airplane-option input, .fr-danger-option input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.fr-airplane-option:hover, .fr-danger-option:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.fr-airplane-option.selected, .fr-danger-option.selected {
    border-color: #2271b1;
    background-color: rgba(34, 113, 177, 0.05);
}

.fr-landing-row {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.fr-landing-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.fr-row-actions {
    margin-top: 10px;
    display: flex;
    gap: 10px;
}

.fr-submit-container {
    text-align: center;
    margin-top: 30px;
}

.fr-btn {
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    display: inline-block;
    text-decoration: none;
    font-size: 16px;
    border: 1px solid transparent;
}

.fr-btn-primary {
    background: #2271b1;
    color: white;
}

.fr-btn-secondary {
    background: #f6f7f7;
    color: #2271b1;
    border-color: #2271b1;
}

.fr-btn-danger {
    background: #d63638;
    color: white;
}

.fr-btn-small {
    padding: 6px 12px;
    font-size: 13px;
}

.fr-required {
    color: #d63638;
    margin-left: 2px;
}

#form-message {
    margin-top: 20px;
    font-weight: 600;
}
