.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    width: 100%;
}

.embed-container iframe, .embed-container object, .embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.zoomable {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: auto;
    border: 1px solid #ccc;
}

.zoomable img {
    transition: transform 0.3s ease;
    cursor: grab;
    width: 100%;
}

.zoomable.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    max-width: unset;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    background-color: white;
}

.zoomable .control-buttons {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 10px;
}


.zoomable.dark-img .control-buttons {
    background-color: #ccc;
}

.zoomable .control-buttons button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.zoomable .control-buttons button svg {
    width: 24px;
    height: 24px;
}

.dragging img {
    cursor: grabbing;
}