body {
    font-family: Arial;
    background: #f5f5f5;
}

.flight-main-search .container {
    width: 800px;
    margin: 40px auto;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}

.flight-main-search .row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.flight-main-search input, .flight-main-search select {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.flight-main-search label {
    font-size: 14px;
    font-weight: bold;
}

.flight-main-search button {
    width: 100%;
    padding: 15px;
    background: black;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}
.adult-child-counter {
    background: #b5b5b5 !important;
}

.flight-main-search .dropdown {
    position: relative;
}

.dropdown-list {
    position: absolute;
    width: 100%;
    background: #fff;
    border: 1px solid #ccc;
    display: none;
    max-height: 150px;
    overflow-y: auto;
    z-index: 10;
}

.dropdown-list div {
    padding: 10px;
    cursor: pointer;
}

.dropdown-list div:hover {
    background: #eee;
}

/* Passenger Popup */
.passenger-box {
    position: absolute;
    background: #fff;
    padding: 15px;
    border: 1px solid #ccc;
    display: none;
    width: 250px;
    z-index: 20;
}

.counter {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.counter button {
    width: 30px;
    height: 30px;
}

.hidden {
    display: none;
}

/* Calendar */
.calendar-container {
    position: absolute;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    display: none;
    z-index: 100;
    width: 550px !important; /* Wide enough for two months */
    margin-top: 60px !important;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.calendar-months {
    display: flex;
    gap: 30px;
}

.month-view {
    flex: 1;
}

.month-title {
    font-weight: bold;
    margin-bottom: 10px;
    color: #2d1b4d;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 13px;
}

.day-name {
    color: #888;
    padding: 5px 0;
}

.day-num {
    padding: 10px 0;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s;
}

.day-num:hover {
    background: #f0f0f0;
}

.day-num.today {
    color: #7c5cfc;
    font-weight: bold;
}

.day-num.empty {
    cursor: default;
}

.nav-arrows {
    display: flex;
    gap: 10px;
    cursor: pointer;
    color: #888;
}
/*calander*/

/*error*/
.error-border {
    border: 1px solid red !important;
}

.error-message {
    color: red;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}
/*error*/

.results {
    margin-top: 20px;
    padding: 10px;
    background: #fafafa;
}
.pass-age {
    color: red;
    fill: currentColor;
}

.journey-type {
    display: flex;
    align-items: center;
}