/* Skarsnuten Booking Widget Styles */

.skarsnuten-booking-button-wrapper {
    display: block;
    width: 100%;
}

.skarsnuten-booking-button {
    display: inline-block;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    transition: all 0.3s ease;
    outline: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.skarsnuten-booking-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.skarsnuten-booking-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Popup Overlay */
.skarsnuten-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.skarsnuten-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Popup Content */
.skarsnuten-popup-content {
    background-color: #1C1C1C;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 90%;
    max-height: 90%;
    overflow: hidden;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.skarsnuten-popup-overlay.active .skarsnuten-popup-content {
    transform: scale(1);
}

/* Popup Header */
.skarsnuten-popup-header {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 30px 25px 0px;
    background-color: #1C1C1C;
}

.skarsnuten-popup-title {
    margin: 0;
    font-size: 2rem;
    color: #B29050;
}

.skarsnuten-popup-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background-color: transparent !important;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #B29050;
    padding: 0;
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.skarsnuten-popup-close:hover {
    background-color: #1C1C1C;
    color: #FFFFFF;
}

/* Popup Body */
.skarsnuten-popup-body {
    padding: 25px;
    min-width: 640px;
    min-height: 300px;
}

/* Booking Widget Styles */
.skarsnuten-popup-body .pricecalendarwidget {
    width: 100%;
    min-height: 400px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .skarsnuten-popup-content {
        max-width: 95%;
        max-height: 95%;
        margin: 10px;
    }

    .skarsnuten-popup-body {
        padding: 15px;
        min-width: auto;
    }

    .skarsnuten-popup-header {
        padding: 15px 20px;
    }

    .skarsnuten-popup-title {
        font-size: 20px;
    }

    .skarsnuten-booking-button {
        font-size: 14px;
        padding: 12px 24px !important;
    }
}

@media (max-width: 480px) {
    .skarsnuten-popup-body {
        padding: 10px;
    }

    .skarsnuten-popup-header {
        padding: 10px 15px;
    }

    .skarsnuten-popup-title {
        font-size: 18px;
    }
}