/* ------------------------------------------------------------------------- */
/* Überschriften – gemeinsame Klasse                                         */
/* ------------------------------------------------------------------------- */
.boxyfy-license-head {
	color: #005681;
	padding: 5px 0;
	margin: 1em 0;
	font-size: 21px;
	font-weight: 700;
}

.boxyfy-license-svg {
	width: 22px;
	height: 22px;
	margin: 0 8px 0 0;
}

/* SVG-Icon neben dem Link-Text im Button */
.boxyfy-link-svg {
	width: 16px;
	height: 16px;
	margin: 0 12px 0 0;
	vertical-align: middle;
	display: inline-block;
}

/* Link-Stil für die Live-Demo */
.info-und-kaufen-link {
	display: inline-flex;
	align-items: center;
	color: #0073aa;
	text-decoration: none;
}

.info-und-kaufen-link:hover {
	color: #005177;
	text-decoration: none; /* Keine Unterstreichung beim Hover */
}

.boxyfy-license-boxhead {
	color: #0173ab;
	border: 2px solid #0173ab;
	padding: 11px 10px;
	margin: 1em 0;
	font-size: 1.30em;
	border-radius: 8px;
}

/* ------------------------------------------------------------------------- */
/* Live-Demo Button                                                          */
/* ------------------------------------------------------------------------- */
.boxyfy-live-button-container {
	margin: 15px 0;
}

.boxyfy-live-demo-button {
	display: inline-flex;
	align-items: center;
	padding: 10px 15px;
	margin: 5px 0 15px 0;
	font-size: 15px;
	font-weight: 600;
	color: #fff;
	background-color: #0073aa;
	border-radius: 5px;
	text-decoration: none;
}

.boxyfy-live-demo-button:hover,
.boxyfy-live-demo-button:focus {
	background-color: #005177;
	color: #fff;
}

/* ------------------------------------------------------------------------- */
/* Einleitungstext                                                           */
/* ------------------------------------------------------------------------- */
.info-und-kaufen-infotext {
	font-size: 16px;
	font-weight: 300;
	line-height: 1.5em;
}

div.info-und-kaufen-infotext {
	font-size: 16px;      /* greift jetzt sicher */
	font-weight: 300;     /* gültiger Wert */
	line-height: 1.5;     /* optional */
}

.info-und-kaufen-couponcolor {
	font-weight: 600;
}

/* ------------------------------------------------------------------------- */
/* Lizenz-Boxen                                                              */
/* ------------------------------------------------------------------------- */
.boxyfy-license-container {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 30px;
}

.boxyfy-license-option {
	flex: 1 1 45%;
	padding: 20px;
	border: 1px solid #ddd;
	border-radius: 8px;
	background-color: #fafafa;
}

.boxyfy-license-option h3 {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	text-align: center;
	margin: 5px 0 25px;
}

.boxyfy-license-option ul {
	list-style: disc;
	padding-left: 20px;
	font-size: 15px;
}

.boxyfy-license-option li {
	margin-bottom: 14px;
	line-height: 1.45em;
}

.boxyfy-strike-price {
    text-decoration: line-through;
    margin-right: 8px;
    color: #d9534f; /* Rot für durchgestrichene Preise */
    font-weight: bold;
}

/* ------------------------------------------------------------------------- */
/* Buttons                                                                   */
/* ------------------------------------------------------------------------- */
.boxyfy-license-button {
	display: block;
	padding: 10px 18px;
	text-align: center;
	font-size: 17px;
	font-weight: 500;
	background-color: #0073aa;
	color: #fff;
	border-radius: 6px;
	text-decoration: none;
	cursor: pointer;
}

.boxyfy-license-button:hover,
.boxyfy-license-button:focus {
	background-color: #005177;
	color: #fff;
}

/* ------------------------------------------------------------------------- */
/* Utility                                                                   */
/* ------------------------------------------------------------------------- */
.center {
	text-align: center;
}

/* Menüpunkt "Info & Lizenz kaufen" immer farbig */
#adminmenu .boxyfy-license-highlight a {
    color: #ff8900 !important;
}

#adminmenu .boxyfy-license-highlight a:hover {
    color: #ff5e00 !important; /* leicht dunkler beim Hover */
}

/* ------------------------------------------------------------------------- */
/* Youtube-Video                                                             */
/* ------------------------------------------------------------------------- */

.boxyfy-video-container {
    margin: 20px 0 35px 0;
    width: 100%;
    max-width: 800px;
    position: relative; /* Korrektur: relative statt display */
}

.boxyfy-video-container iframe {
    width: 100%;
    aspect-ratio: 16 / 9; /* Setzt das Verhältnis auf 16:9 */
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

@media (max-width: 768px) {
    .boxyfy-video-container {
        max-width: 100%;
    }
}

