/* Styles for the shared flight generator form (src/views/partials/generatorForm.ejs).
   Extracted from the inline <style> of pages/fake.ejs so every page that embeds
   the form gets the same look instead of carrying its own copy. */

.generate__label {
    position: relative;
}

.generate__label.error-label {
    border: 1px solid #f44336;
}

.generate__label .error {
    z-index: 99999;
    position: absolute;
    top: 100%;
    left: -20%;
    margin-top: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 12px;
    color: #f44336;
}

.generate__flight-label {
    color: #9299A2;
    font-size: 16px;
}

.add-flight {
    width: 100%;
    padding: 18px 24px;
    border: 1px dashed;
    border-color: #4450F2;
    border-radius: 10px;
    background: transparent;
    color: #4450F2;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    display: block;
}

.add-flight:hover {
    background: #4450f237;
}

.remove-flight {
    color: #4450F2;
    font-size: 16px;
    float: right;
    cursor: pointer;
}
