/**
 * @package     plg_system_promos
 * @copyright   Copyright (C) 2025 Electric Easel. All rights reserved.
 * @license     GNU General Public License version 2 or later
 */

.promo-modal .modal-dialog {
    max-width: 800px;
}

.promo-modal .modal-content {
    border: none;
    border-radius: 8px;
    overflow: hidden;
}

.promo-modal .modal-body {
    position: relative;
}

.promo-modal .promo-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1050;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: background 0.2s ease;
}

.promo-modal .promo-close:hover {
    background-color: rgba(255, 255, 255, 1);
}

.promo-modal .promo-image-wrapper {
    display: block;
    position: relative;
}

.promo-modal .promo-image {
    display: block;
    max-width: 100%;
    height: auto;
}

.promo-preview-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ff9800;
    color: #fff;
    padding: 8px 15px;
    text-align: center;
    font-weight: 600;
    z-index: 10000;
    font-size: 14px;
}

@media (max-width: 767px) {
    .promo-modal .modal-dialog {
        max-width: 500px;
        margin: 1rem;
    }

    .promo-modal .promo-close {
        top: 8px;
        right: 8px;
        width: 32px;
        height: 32px;
    }
}
