/**
 * Last-Minute Flight Widget Styles
 */

 .lmf-widget-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.lmf-container {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.lmf-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    margin-bottom: 15px;
}

.lmf-price {
    color: #ffffff;
    font-size: 26px;
    font-weight: 700;
    font-family: 'Arial', sans-serif;
}

.lmf-button {
    display: inline-block;
    background-color: #000000;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 5px;
    padding: 8px 25px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    transition: all 0.3s ease;
}

.lmf-button:hover {
    background-color: #ffffff;
    color: #000000;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .lmf-title {
        font-size: 20px;
    }
    
    .lmf-price {
        font-size: 22px;
    }
    
    .lmf-button {
        padding: 6px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .lmf-title {
        font-size: 18px;
    }
    
    .lmf-price {
        font-size: 20px;
    }
    
    .lmf-button {
        padding: 5px 15px;
        font-size: 12px;
    }
}