/* =============================================================================
   FULLSIZEPAINTING.CSS
   Order follows fullsizepainting.ejs: title → overlay text → container → wrap → image
   ============================================================================= */

.fullsizepainting-title {
    margin-top: 20px;
    text-align: center;
    font-size: 1.0rem;
    font-weight: bold;
    margin-bottom: 6px;
}

.image-overlay-text {

    text-align: center;
    font-size: 0.7rem;
    color: white;
    background-color: black;

}

.fullsizepainting-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 10px;
}

.fullsizepainting-wrap {
    max-height: 80vh;
    max-width: 80vw;
    overflow: auto;
    border: 1px solid var(--BaseColor);

    position: relative;

}

.fullsizepainting {
    display: block;
    /* Let the image be its natural size */
    width: auto;
    height: auto;
    cursor: move;
}
