.anybnb-np-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    width: 100%;
}
.anybnb-np-title {
    color: #1f3b57;
    font-size: 1.25rem;
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 600;
}
.anybnb-np-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}
.anybnb-np-btn {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: #f8f9fa;
    color: #1f3b57;
    padding: 14px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    box-sizing: border-box;
}
.anybnb-np-btn:hover {
    background-color: #1f3b57;
    color: #ffffff;
    border-color: #1f3b57;
    box-shadow: 0 4px 10px rgba(31, 59, 87, 0.2);
}
.anybnb-np-empty {
    color: #888;
    font-style: italic;
    padding: 10px 0;
}

@media (max-width: 1024px) {
    .anybnb-np-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .anybnb-np-buttons {
        grid-template-columns: 1fr;
    }
}

/* Modal Styles */
.anybnb-np-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.anybnb-np-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.anybnb-np-modal-content {
    background-color: #ffffff;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}
.anybnb-np-modal-overlay.active .anybnb-np-modal-content {
    transform: scale(1);
}
.anybnb-np-modal-header {
    background-color: #1f3b57;
    color: #ffffff;
    padding: 16px 20px 0 20px;
    display: flex;
    flex-direction: column;
    position: relative;
}
.anybnb-np-modal-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.anybnb-np-modal-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}
.anybnb-np-modal-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: opacity 0.2s ease;
}
.anybnb-np-modal-close:hover {
    opacity: 0.7;
}
.anybnb-np-modal-address {
    margin-top: 8px;
    font-size: 0.9rem;
    color: #d1d8e0;
    display: none;
}
.anybnb-np-modal-address.show {
    display: block;
}

/* Tabs */
.anybnb-np-modal-tabs {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}
.anybnb-np-modal-tab {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    padding: 8px 12px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.95rem;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}
.anybnb-np-modal-tab:hover {
    color: #ffffff;
}
.anybnb-np-modal-tab.active {
    color: #ffffff;
    border-bottom-color: #ffffff;
}

.anybnb-np-modal-body {
    flex-grow: 1;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    background-color: #f8f9fa;
}
.anybnb-np-modal-body iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}