/* קונטיינר */
.ef-box {
    direction: rtl;
    margin: 20px auto;
    max-width: 650px;
}

/* כותרת */
.ef-title {
    font-size: 26px;
    font-weight: 700;
    color: #0a75c2;
    text-align: center;
    margin-bottom: 25px;
}

/* רשימה */
.ef-list-vertical {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* כרטיס */
.ef-card-v2 {
    background: #f7f9fa;
    border: 1px solid #e4e8ec;
    border-radius: 12px;
    padding: 18px 20px;
    transition: 0.2s;
}

.ef-card-v2:hover {
    background: #eef3f6;
}

/* שורה */
.ef-line {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 15px;
}

.ef-line:last-child {
    margin-bottom: 0;
}

/* אייקון */
.ef-icon {
    font-size: 18px;
}

/* תווית */
.ef-label {
    font-weight: 600;
    color: #444;
    min-width: 60px;
}

/* ערך */
.ef-value {
    font-weight: 700;
    color: #222;
}

/* שם חברה */
.ef-airline {
    color: #0a5abf;
}

/* מחיר */
.ef-price {
    color: #0f9d58;
    font-size: 18px;
}


/* כל טיסה בשורה אחת */
.ef-card-line {
    direction: rtl;
    background: #f7f9fa;
    border: 1px solid #e6eaee;
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* חשוב! כדי לא לשבור בעיות במובייל */
    gap: 5px;
}

/* כל פרמטר */
.ef-item {
    font-size: 15px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ef-item strong {
    color: #555;
}

.ef-item.price {
    color: #0f9d58;
    font-weight: bold;
    font-size: 17px;
    display: flex;
    align-items: center;
}


/* כפתור חיפוש טיסות */
.ef-button {
    display: block;
    background: #0a75c2;
    color: #fff !important;
    text-align: center;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 700;
    margin: -6px auto 20px; /* נמצא קרוב לכרטיס מבלי לגעת בו */
    width: 100%;
    max-width: 900px;
    transition: 0.2s ease;
    text-decoration: none !important;
}

.ef-button:hover {
    background: #085a98;
}
