/**
 * Frontend Styles for Panotour WP
 *
 * @package PanotourWP
 */

.panotour-wp-container {
    margin: 20px 0;
    max-width: 100%;
}

.panotour-wp-iframe-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    overflow: hidden;
    background: #000;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.panotour-wp-iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.panotour-wp-link-wrapper {
    margin-top: 15px;
    text-align: center;
}

.panotour-wp-link {
    display: inline-block;
    padding: 12px 24px;
    background: #2271b1;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.panotour-wp-link:hover,
.panotour-wp-link:focus {
    background: #135e96;
    color: #fff;
    text-decoration: none;
}

.panotour-wp-link:focus {
    outline: 2px solid #2271b1;
    outline-offset: 2px;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .panotour-wp-container {
        margin: 15px 0;
    }
    
    .panotour-wp-link {
        padding: 10px 20px;
        font-size: 14px;
    }
}

