/* styles.css */

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f5f7fb;
}

.search-card {
    background: white;
    border-radius: 16px;
    max-width: 600px;
    margin: 20px auto;
    padding: 15px 20px 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tab-menu {
    display: flex;
    justify-content: flex-start;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 15px;
}
.tab-menu button label{
    margin:0px
}
    .tab-menu .tab {
        flex: 1;
        padding: 10px 15px;
        border: none;
        background:linear-gradient(180deg, #2696fe, #111284);
        color: white;
        font-weight: bold;
        cursor: pointer;
    }

        .tab-menu .tab.active {
            background: linear-gradient(to right, #10403B, #10403B);
        }

.trip-type {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

    .trip-type label {
        font-weight: 600;
        font-size: 14px;
        cursor: pointer;
    }

.form-group {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

    .form-group > div {
        flex: 1;
        min-width: 45%;
    }

    .form-group .icon {
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 40px;
    }

    .form-group input,
    .form-group select {
        width: 100%;
        padding: 10px;
        border: 1px solid #ced4da;
        border-radius: 8px;
        font-size: 14px;
    }

.advanced-link {
    text-align: left;
    margin: 10px 0 20px;
}

    .advanced-link a {
        color: #00c3c8;
        font-size: 14px;
        text-decoration: none;
    }

.search-btn {
    background: linear-gradient(to right, #10403B, #10403B);
    color: white;
    font-weight: bold;
    font-size: 18px;
    padding: 12px 20px;
    width: 100%;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s ease;
}

    .search-btn:hover {
        background: #e14b00;
    }


.flight-icon {
    min-width: auto !important;
    position: absolute;
    left: 50%;
    transform: translate(-50%,-50%);
    top: 71%;
    height: 38px;
    width: 38px;
    border-radius: 50%;
    border: 1px solid #f85a00;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content:center
}

    .flight-icon img {
        height: 30px;
        width: 30px;
        background: #fff;
        border-radius: 50%;
        object-fit:contain
    }