#p_container {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
    background: #000;
    cursor: grab;
	touch-action: none;
}

#p_img {
    position: absolute;
    display: block;
    max-width: none !important;
    width: auto !important;
    height: auto !important;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    user-select: none;
    -webkit-user-drag: none;
}

.p_bw { filter: grayscale(100%) !important; }

#p_menu {
    text-align: center;
    padding: 20px;
    background: #fff;
    font-family: sans-serif;
}

.p_btn {
    background: #0057b7;
    color: #fff;
    border: none;
    padding: 10px 16px;
    margin: 3px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.p_instructions {
    font-size: 13px;
    color: #444;
    margin-top: 15px;
    line-height: 1.6;
}