/**
 * Tour Quoter Integration - Frontend Styles
 * Version: 1.0.0
 */

.tour-quoter-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background: #ffffff;
    margin: 20px 0;
}

.tour-quoter-iframe {
    display: block;
    border: none;
    width: 100%;
    min-height: 600px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tour-quoter-wrapper {
        margin: 10px 0;
        border-radius: 4px;
    }
    
    .tour-quoter-iframe {
        min-height: 500px;
    }
}

/* Loading state */
.tour-quoter-wrapper.loading::before {
    content: "Loading Tour Quoter...";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #10b981;
    font-size: 18px;
    font-weight: 600;
    z-index: 1;
}

.tour-quoter-wrapper.loading::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: 0;
}
