/* Fullscreen modal styles */
.kcp-3d-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 9999;
    overflow: hidden;
}

/* Close button styles */
.kcp-close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    z-index: 10000;
}

/* Viewer container styles */
.kcp-viewer-container {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Image frame styles */
.kcp-current-frame {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
}

/* Frame counter styles */
.kcp-frame-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #333;
    background: rgba(255, 255, 255, 0.7);
    padding: 5px 10px;
    border-radius: 3px;
}