
#nwcpv2-icon {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    z-index: 1001;
}
#nwcpv2-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: none;
}
#nwcpv2-widget {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 500px;
    background: white;
    border-radius: 10px;
    z-index: 1002;
    display: none;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
#nwcpv2-widget.large {
    width: 80vw;
    height: 80vh;
}
.nwcpv2-nav {
    background: #222;
    color: turquoise;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px;
}
.nwcpv2-close,
.nwcpv2-toggle-size,
.nwcpv2-nav-arrow {
    cursor: pointer;
    padding: 0 10px;
}
#nwcpv2-frame {
    flex: 1;
    border: none;
    width: 100%;
    height: 100%;
}
#nwcpv2-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    display: none;
}
