﻿.image-dropbox {
    position: relative;
    border: 2px dashed #ccc;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    transition: border-color 0.2s ease-in-out, background-color 0.2s;
    cursor: pointer;
}

    .image-dropbox.dragover {
        border-color: #0d6efd;
        background-color: #f0f8ff;
    }

    .image-dropbox .inner {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 1rem;
    }

    .image-dropbox img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: none;
    }

    .image-dropbox small {
        color: #6c757d;
        margin-top: 0.25rem;
    }

.remove-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2;
    display: none;
}

/* Aspect ratio containers */
.ratio-1500x500 {
    aspect-ratio: 3 / 1;
    /*transform: scale(0.9);
    transform-origin: top left;*/
    max-width: 900px;
    margin: 0 auto;
}
/* Banner 1500x500 */
.ratio-800x550 {
    aspect-ratio: 800 / 550;
    transform: scale(0.5);
    transform-origin: top left;
}
/* Highlight */
.ratio-600x300 {
    aspect-ratio: 2 / 1;
    transform: scale(0.5);
    transform-origin: top left;
}
/* Listing */
