/* Travel Fare Shortcode Styles */
.travelfare-box {
    width: 100%;
    max-width: 500px;
    margin: 20px auto;
    border: 1px dashed #ddd;
    border-radius: 5px;
    font-family: Arial, sans-serif;
    position: relative;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.travelfare-header {
    text-align: center;
    padding: 15px;
    border-bottom: 1px dashed #ddd;
}

.travelfare-offer {
    font-weight: bold;
    color: #e30613;
    font-size: 18px;
}

.travelfare-content {
    padding: 20px;
    text-align: center;
}

.travelfare-save {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.travelfare-tagline {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.travelfare-price-section {
    margin: 20px 0;
}

.travelfare-price {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.travelfare-currency {
    font-size: 20px;
    color: #333;
    margin-right: 5px;
    align-self: flex-start;
    margin-top: 8px;
}

.travelfare-amount {
    font-size: 60px;
    font-weight: bold;
    color: #333;
    line-height: 1;
}

.travelfare-asterisk {
    font-size: 16px;
    color: #333;
    cursor: pointer;
    position: relative;
    top: -35px;
}

.travelfare-original-price {
    font-size: 20px;
    color: #e30613;
    text-decoration: line-through;
    margin-left: 15px;
    align-self: center;
}

.travelfare-price-note {
    font-size: 14px;
    color: #666;
}

.travelfare-rating {
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
}

.travelfare-rating-text {
    font-weight: bold;
    margin-right: 10px;
}

.travelfare-rating-source {
    margin-left: 5px;
    color: #008489;
}

.travelfare-statistic {
    font-size: 14px;
    color: #666;
    margin: 15px 0;
}

.travelfare-cta {
    font-weight: bold;
    color: #333;
    margin-top: 10px;
}

/* Popup styles */
.travelfare-popup {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 9999;
}

.travelfare-popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.travelfare-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}

.travelfare-popup-text {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}