/**
 * @package     Joomla.Plugin
 * @subpackage  Content.gdimagemodal
 *
 * @copyright   (C) 2026 GeniusDesign
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

/* Content images that open the modal */
img.gd-imagemodal-zoom {
	cursor: zoom-in;
}

/* Raster modal: transparent dialog sized by the image itself, so the
   original file is shown at natural resolution, capped by the viewport. */
.gd-imagemodal-modal .gd-imagemodal-dialog {
	width: auto;
	max-width: none;
	background: transparent;
	padding: 0;
	box-shadow: none;
}

.gd-imagemodal-dialog .gd-imagemodal-img {
	display: block;
	width: auto;
	height: auto;
	max-width: min(94vw, 1800px);
	max-height: 86vh;
	margin: 0 auto;
	background: #fff;
}

/* SVG modal: fullscreen, dark stage, vector scaled to the viewport. */
.gd-imagemodal-dialog-svg {
	background: #1a1a1a;
	position: relative;
}

.gd-imagemodal-dialog-svg .gd-imagemodal-img {
	width: 92vw;
	height: 86vh;
	object-fit: contain;
}

.gd-imagemodal-dialog-svg .uk-modal-close-full {
	background: transparent;
	color: #fff;
}

/* Caption fed from the image alt/title */
.gd-imagemodal-caption {
	color: #fff;
	text-align: center;
	font-size: 0.875rem;
	line-height: 1.4;
	padding: 10px 14px 0;
}

.gd-imagemodal-dialog-svg .gd-imagemodal-caption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 12px;
	padding: 0 14px;
}

.gd-imagemodal-caption:empty {
	display: none;
}
