body {
    padding-top: 60px;
    padding-bottom: 40px;
}
a, a:hover, a:focus {
    /*color: #000000;*/
    text-decoration: none;
}
/*### GLOBAL OVERRIDES ###*/

.zf-green {
    color: #7288c8;
}

.btn {
    /*background-color: #e16539;*/
    transition: all 0.3s ease;
    color: white;
    /*border-color: #e16539;*/
    /*font-size: 16px !important;*/
    /*padding: 10px 20px !important;*/
    /*border-radius: 5px !important;*/
}

.btn-primary {
    background-color: #e16539;
    border-color: #e16539;
}

.btn-primary:hover {
    background-color: rgba(225, 101, 57, 0.6) !important;
    border-color: rgba(225, 101, 57, 0.6) !important;
}

.submit-btn {
    background-color: #d7f8b3 !important;
    border-color: #d7f8b3 !important;
}

.btn {
    color: white;
    transition: all 0.3s ease;
    /*background-color: rgb(225, 101, 57);*/
    /*border-color: rgb(225, 101, 57);*/
}

.btn:hover {
    /*background-color: rgba(232, 148, 117, 0.8);*/
    transform: scale(1.02);
}

/* global bg override */


.btn-default, .btn-success {
    background-color: #719dc6 !important;
    border-color: #719dc6 !important;
}

.btn-default:hover {
    background-color: rgb(113, 157, 198, 0.6) !important;
    border-color: rgb(113, 157, 198, 0.6) !important;
}

.disabled {
    background-color: #cccccc !important;
    border-color: #cccccc !important;
}

.btn-success {
    /*border-color: rgba(225, 101, 57, 0.6) !important;*/

    /*background-color: #7288c8;*/
    /*background-image: -moz-linear-gradient(top, #647dc5, #7288c8);*/
    /*background-image: -ms-linear-gradient(top, #647dc5, #7288c8);*/
    /*background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#647dc5), to(#7288c8));*/
    /*background-image: -webkit-linear-gradient(top, #647dc5, #7288c8);*/
    /*background-image: -o-linear-gradient(top, #647dc5, #7288c8);*/
    /*background-image: linear-gradient(top, #647dc5, #7288c8);*/
    /*filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#647dc5', endColorstr='#7288c8', GradientType=0);*/
}

.btn-success:hover,
.btn-success:active,
.btn-success.active,
.btn-success.disabled,
.btn-success[disabled] {
    /*background-color: rgba(225, 101, 57, 0.6) !important;*/
    /*border-color: rgba(225, 101, 57, 0.6) !important;*/
}

.btn-info, .btn-danger {
    background-color: rgb(225, 101, 57);
    border-color: rgb(225, 101, 57);
}

.btn-info:hover {
    background-color: rgba(225, 101, 57, 0.6) !important;
    border-color: rgba(225, 101, 57, 0.6) !important;
}

div.container a.navbar-brand > img {
    display: inline;
    margin-right: 4px;
    margin-top: -2px;
}

/* Custom style options */

.btn-custom,
.cartButton.in-cart {
    background-color: rgba(110, 110, 110, 0.6) !important;
    border-color: rgba(110, 110, 110, 0.6) !important;
    color: #ffffff !important;
}

.btn-custom:hover,
.cartButton.in-cart:hover {
    background-color: rgba(110, 110, 110, 0.8) !important;
    border-color: rgba(110, 110, 110, 0.8) !important;
    color: #ffffff !important;
}

.btn-white {
    background-color: rgb(133, 159, 236) !important;
    border-color: rgba(114, 136, 200, 0.6) !important;
    color: #000000 !important;
}

.btn-white:hover {
    background-color: rgb(133, 159, 236) !important;
    border-color: rgba(114, 136, 200, 0.6) !important;
    color: #000000 !important;
}

.btn-custom-animated {
    position: relative;
    padding: 10px;
    flex-direction: column;
    align-items: center; /* Vertically aligns logo and text */
    min-width: 160px; /* Original box width */
    height: 34px; /* Original box height */
    margin: 20px auto;
    border-radius: 4px;
    border: 1px solid #ddd;
    overflow: hidden;
    text-align: center;
    background-color: rgba(255, 255, 255); /* Solid background for the box */
    display: flex;
    justify-content: center;
    color: #000000;
    font-family: Arial, sans-serif;
    z-index: 1;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional for slight elevation */
}

.btn-custom-animated:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    padding: 2px; /* Border thickness */
    background: linear-gradient(90deg, #859fec, #e16539, #859fec, #e16539); /* Adjust the gradient */
    background-size: 300% 300%;
    z-index: -1;
    pointer-events: none;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: destination-out;
    box-sizing: border-box;
    opacity: 0; /* Hide the animation by default */
    transition: opacity 0.3s ease-in-out; /* Smooth reveal on hover */
}

/* Keyframes for animation */
@keyframes animate-btn {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Hover State */
.btn-custom-animated:hover:before {
    opacity: 1; /* Reveal the border animation */
    background-color: rgba(255, 255, 255); /* Solid background for the box */
    animation: animate-btn 3s linear infinite; /* Add animation on hover */
}

/****** Animated but small ******/

.btn-ca-sm {
    position: relative;
    /*padding: 10px;*/
    flex-direction: row;
    align-items: center; /* Vertically aligns logo and text */
    height: 30px; /* Same height as btn-custom-animated */
    border-radius: 4px;
    border: 1px solid #ddd;
    overflow: hidden;
    text-align: center;
    background-color: rgba(255, 255, 255); /* Solid background for the box */
    display: flex;
    justify-content: center;
    color: #000000;
    font-family: Arial, sans-serif;
    z-index: 1;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional for slight elevation */
    transition: all 0.3s ease-in-out;
}

.btn-ca-sm:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    padding: 2px; /* Border thickness */
    background: linear-gradient(90deg, #859fec, #e16539, #859fec, #e16539); /* Adjust the gradient */
    background-size: 300% 300%;
    z-index: -1;
    pointer-events: none;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: destination-out;
    box-sizing: border-box;
    opacity: 0; /* Hide the animation by default */
    transition: opacity 0.3s ease-in-out; /* Smooth reveal on hover */
}

/* Keyframes for animation */
@keyframes simple-btn-animate {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Hover State */
.btn-ca-sm:hover:before {
    opacity: 1; /* Reveal the border animation */
    animation: simple-btn-animate 3s linear infinite; /* Add animation on hover */
}

.btn-deactivated {
    background-color: rgb(115, 154, 192, 0.7) !important;
    border-color: rgb(115, 154, 192, 0.7) !important;
    color: #ffffff !important;
}

.btn-deactivated:hover {
    background-color: rgb(115, 154, 192, 0.4) !important;
    border-color: rgb(115, 154, 192, 0.4) !important;
    color: #1e1f22 !important;
}

.login-option-logo {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

/** START Animated border "button" **/
/* Box Styling */
.animated-border-box {
    position: relative;
    padding: 10px;
    flex-direction: column;
    align-items: center; /* Vertically aligns logo and text */
    /*width: 200px; !* Original box width *!*/
    height: 100px; /* Original box height */
    margin: 20px auto;
    border-radius: 8px;
    border: 1px solid #ddd;
    overflow: hidden;
    text-align: center;
    background-color: rgba(255, 255, 255); /* Solid background for the box */
    display: flex;
    justify-content: center;
    color: #333;
    font-family: Arial, sans-serif;
    z-index: 1;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional for slight elevation */
}

/* Initial Border State */
.animated-border-box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    padding: 2px; /* Border thickness */
    background: linear-gradient(90deg, #859fec, #e16539, #859fec, #e16539); /* Adjust the gradient */
    background-size: 300% 300%;
    z-index: -1;
    pointer-events: none;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: destination-out;
    box-sizing: border-box;
    opacity: 0; /* Hide the animation by default */
    transition: opacity 0.3s ease-in-out; /* Smooth reveal on hover */
}

/* Keyframes for animation */
@keyframes animate-border {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Hover State */
.animated-border-box:hover:before {
    opacity: 1; /* Reveal the border animation */
    animation: animate-border 3s linear infinite; /* Add animation on hover */
}

/** END Animated border "button" **/

.option-item-redirect {
    position: relative;
    padding: 10px;
    flex-direction: row;
    align-items: center;
    width: auto;
    height: 60px;
    margin: 20px auto;
    border-radius: 8px;
    border: 1px solid rgb(221, 221, 221);
    overflow: hidden;
    text-align: center;
    background-color: rgba(255, 255, 255);
    display: flex;
    justify-content: center;
    color: #333;
    z-index: 1;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.option-item-redirect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    padding: 2px;
    background: linear-gradient(90deg, #859fec, #e16539, #859fec, #e16539);
    background-size: 300% 300%;
    z-index: -1;
    pointer-events: none;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: destination-out;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    text-decoration: none;
}

.option-item-redirect:hover::before,
.slide-btn.active .option-item-redirect::before {
    opacity: 1;
    animation: borderAnimation 4s linear infinite;
    text-decoration: none;
}

@keyframes borderAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/** START CONSTANT Animated border **/

.animated-border-box-const {
    position: relative;
    padding: 4px;
    flex-direction: row;
    align-items: center; /* Vertically aligns logo and text */
    /*width: 200px; !* Original box width *!*/
    height: 50px; /* Original box height */
    margin: 20px auto;
    border-radius: 8px;
    border: 1px solid #ddd;
    overflow: hidden;
    text-align: center;
    background-color: rgba(255, 255, 255); /* Solid background for the box */
    display: flex;
    justify-content: center;
    color: #333;
    font-family: Arial, sans-serif;
    z-index: 1;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional for slight elevation */
}

/* Initial Border State */
.animated-border-box-const:before {
    opacity: 1; /* Reveal the border animation */
    animation: animate-border-const 3s linear infinite; /* Add animation on hover */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    padding: 2px; /* Border thickness */
    background: linear-gradient(90deg, #859fec, #e16539, #859fec, #e16539); /* Adjust the gradient */
    background-size: 300% 300%;
    z-index: -1;
    pointer-events: none;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: destination-out;
    box-sizing: border-box;
    transition: opacity 0.3s ease-in-out; /* Smooth reveal on hover */
}

/* Keyframes for animation */
@keyframes animate-border-const {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/** END CONSTANT Animated border **/

.custom-sticky {
    position: sticky;
    top: 50px;
    /*bottom: 120px;*/
    /*overflow-y: scroll;*/
    /*min-height: 100vh;*/
    /*bottom: 50px;*/
    /*align-self: flex-start; !* Ensures alignment within flex containers if necessary *!*/
    /*z-index: -1;*/
}

.custom-sticky-child {
    max-height: calc(100vh - 46vh); /* Full viewport height minus any offsets like sticky top */
    /*max-height: 100vh;*/
    overflow-y: auto; /* Add vertical scrolling, if needed */
}

/*.custom-height {*/
/*    max-height: calc(100vh - 120px);*/
/*}*/

.hyphenated-text {
    hyphens: auto; /* Aktiviert Silbentrennung */
    overflow-wrap: break-word; /* Sicherheitshalber, falls das Wort nicht getrennt werden kann */
    word-wrap: break-word; /* Ältere Unterstützung (alias von overflow-wrap) */
    language: de-DE;
}

.btn-fixedSize {
    min-width: 160px; /* Minimum width based on the largest button or larger */
    text-align: center; /* Align text to center for consistent visuals */
}


.option-bg {
    background: linear-gradient(90deg, rgb(233, 99, 51), white 50%, rgb(113, 157, 198));

    width: 100%;
    height: 100%;
    /*margin: 0;*/
    /*padding: 0;*/
}

.option-box {
    border: 1px solid #ccc;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    border-radius: 5px;
    margin-bottom: 20px;
    transition: box-shadow 0.3s;
}

.option-box:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.list-group .list-group-item {
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.list-group .list-group-item:hover {
    background-color: rgba(0,0,0,0.03);
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transform: translateY(-1px);
}

.list-group .list-group-item:hover a {
    color: inherit;
    text-decoration: none;
}

.option-box-selected {
    background: rgba(165, 163, 163, 0.5); /* Grey shadow with transparency */
    opacity: 0.2;
}

.option-box-no-hover {
    border: 1px solid #ccc;
    padding: 20px;
    text-align: center;
    border-radius: 5px;
    margin-bottom: 20px;
    transition: box-shadow 0.3s;
}

.option-box-no-hover-bt {
    border-top: 1px solid #ccc;
    padding: 20px;
    margin-bottom: 20px;
    transition: box-shadow 0.3s;
}

.option-box-seminar {
    border: 1px solid rgba(165, 163, 163, 0.5);
    padding: 10px;
    border-radius: 5px;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
    transition: box-shadow 0.3s;
}

.option-box-no-hover-left {
    border: 1px solid #ccc;
    padding: 20px;
    text-align: left;
    border-radius: 5px;
    margin-bottom: 20px;
    transition: box-shadow 0.3s;
}

.option-box-no-hover-border--left {
    /*border: 1px solid #ccc;*/
    padding: 20px;
    text-align: left;
    border-radius: 5px;
    margin-bottom: 20px;
    transition: box-shadow 0.3s;
}

.option-item-transparent {
    display: flex;
    flex-direction: row;
    align-items: center; /* Vertically aligns logo and text */
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.40);
    color: #000000; /* Optional: to enhance contrast */
    box-shadow: 1px 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease; /* Optional hover effect */
}

.option-item-transparent:hover {
    transform: scale(1.05); /* Slightly enlarges on hover */
    cursor: pointer;
}

.option-item {
    display: flex;
    flex-direction: row;
    align-items: center; /* Vertically aligns logo and text */
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    background-color: #f9f9f9;
    box-shadow: 1px 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease; /* Optional hover effect */
}

.option-item:hover {
    transform: scale(1.05); /* Slightly enlarges on hover */
    cursor: pointer;
}

.option-logo {
    width: 50px; /* Adjust logo size */
    height: auto; /* Maintain aspect ratio */
    margin-right: 15px; /* Adds space between the logo and text */
}

/* Seminar Design */

.seminarBlock {
    /*border-bottom: 1px solid #ddd;*/
    margin-left: 10px;
    margin-right: 10px;
    /*padding-top: 20px;*/
    padding-bottom: 20px;
    border-left: 3px solid #ddd;
}

.seminarBlock:hover {
    border-left: 3px solid #e16539;
    /*border-left: 3px solid #7288c8;*/
    /*background-color: rgba(220, 220, 220, 0.1);*/
}

.seminarBlocky {
    border-bottom: 1px solid #ddd;
    margin-left: 10px;
    margin-right: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
    border-left: 3px solid #ddd;
}

.seminarBlocky:hover {
    border-left: 3px solid #e16539;
    /*border-left: 3px solid #7288c8;*/
    /*background-color: rgb(243, 161, 132, 0.05);*/
}

.seminarDetailsBlock {
    margin-top: 15px;
}

.seminarLabel {
    font-size: 100%;
    line-height: 2;
}

.kategorieUndArtTable {
    margin-bottom: 0;
}

.detailsLink {
    font-weight: normal;
    font-size: 0.85em;
}

.seminarBlockTrenner {
    /*margin-top: 20px;*/
    /*margin-bottom:10px;*/
    min-height: 3px;
    background: linear-gradient(to right, transparent, #ddd 20%, #ddd 80%, transparent);
}

.seminarBlockTrenner:last-child {
    display: none;
}

.seminarBoxTrenner:first-child {
    display: none;
}

.seminareSection .seminarBlock:last-child {
    border-bottom: none;
}

.seminareSection .seminarBlock:first-child {
    /*padding-top:10px;*/
}

.blockTrenner {
    margin-top: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
}


/* Other stuff */

.option-border {
    position: relative;
    /*padding: 25px;*/
    /*margin: 50px;*/
    /*margin-bottom: 0px;*/
    /*width: 50%;*/
    background-color: rgba(222, 222, 222, 0.5);
    border-top-left-radius: 20px; /* Abgerundete Ecken */
    border-bottom-left-radius: 20px; /* Abgerundete Ecken */
    background: linear-gradient(white, white) padding-box,
    linear-gradient(to right, rgb(233, 99, 51) 0%, transparent 20%, transparent 80%, rgb(113, 157, 198) 100%) border-box;
    border: 6px solid transparent;
}

.option-border-list {
    position: relative;
    background-color: rgba(222, 222, 222, 0.5);
    border-top-left-radius: 20px; /* Abgerundete Ecken */
    border-bottom-left-radius: 20px; /* Abgerundete Ecken */
    background: linear-gradient(white, white) padding-box,
    linear-gradient(to right, rgb(233, 99, 51) 0%, transparent 20%, transparent 80%, rgb(113, 157, 198) 100%) border-box;
    border: 6px solid transparent;
}

.panel-default {
    /*    position: relative;
        padding: 25px;
        margin: 50px;
        margin-bottom: 0px;*/

    background-color: rgba(222, 222, 222, 0.5);
    border-top-left-radius: 20px; /* Abgerundete Ecken */
    border-bottom-left-radius: 20px; /* Abgerundete Ecken */
    background: linear-gradient(white, white) padding-box,
    linear-gradient(to right, rgb(233, 99, 51) 0%, transparent 20%, transparent 80%, rgb(113, 157, 198) 100%) border-box;
    border: 6px solid transparent;
}

.panel-default > .panel-heading , .body-register{
    border-top-left-radius: 14px; /* Abgerundete Ecken */
    background-color: transparent;
}


html {
    /* background-image, -position etc. kannst du behalten, wenn du willst,
       aber NICHT position:absolute/top/left/right/bottom und NICHT overflow:scroll */
    background-image: url("/img/background.jpg");
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    /* Entfernen: position/coords/z-index/overflow */
    /* position: absolute; */
    /* top: 0; left: 0; right: 0; bottom: 0; */
    /* z-index: -1; */
    /* overflow: scroll; */
    min-height: 100%; /* optional */
}

/* Alternativ: Hintergrund an body hängen */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: url("/img/background.jpg") bottom / cover no-repeat;
    z-index: -1;               /* hinter dem Body-Inhalt */
    opacity: 0.05;
}

body {
    background-color: rgba(255, 255, 255, 0.8);
    /*background-color: rgba(126, 126, 126, 0.8);*/

    opacity: 95%;
    width: 100%;
    min-height: 100vh;

}

.bg {
    padding-bottom: 50px;
}

/*.navbar .footer .row .col{*/
/*    opacity: 1;*/
/*}*/

.table-borderless > tbody > tr > td,
.table-borderless > tbody > tr > th,
.table-borderless > tfoot > tr > td,
.table-borderless > tfoot > tr > th,
.table-borderless > thead > tr > td,
.table-borderless > thead > tr > th {
    border: none;
}


tr.group {
    background-color: #ddd !important;
    color: #000;
    font-weight: 500;
}

.mb-0 {
    margin-bottom: 0 !important
}

.mb-1 {
    margin-bottom: .25rem !important
}

.mb-2 {
    margin-bottom: .5rem !important
}

.mb-3 {
    margin-bottom: 1rem !important
}

.mb-4 {
    margin-bottom: 1.5rem !important
}

.mb-5 {
    margin-bottom: 3rem !important
}

.invalid-feedback {

    color: #a94442;

}

@keyframes expandWidth {
    0% {
        width: 0;

    }
    10% {
        width: 0;
        opacity: 1;
    }
    99% {
        width: 100%;
        opacity: 1;

    }
    100% {
        width: 100%;
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;

    }

    100% {
        opacity: 1;
    }
}

/* Grundlegender Stil für die Panel-Klasse */
.panel-default.animate {
    width: 0;
    opacity: 0;
    overflow: hidden;
    white-space: nowrap; /* Verhindert Zeilenumbrüche während der Animation */

    transition: opacity 0.5s ease-in-out;
    animation: expandWidth 0.5s ease-in-out forwards;
    animation-delay: 0.5s; /* Synchronisiert mit der Breitenanimation */

}

.animate .panel-heading, .animate .panel-body {
    opacity: 0;
    /*white-space: nowrap;  Verhindert Zeilenumbrüche während der Animation */
    animation: fadeIn 0.8s ease-in forwards;
    animation-delay: 0.8s; /* Synchronisiert mit der Breitenanimation */

}

.animate.animate-second {
    animation-delay: 1s; /* Synchronisiert mit der Breitenanimation */
}

.animate.animate-second .panel-heading,
.animate.animate-second .panel-body {
    animation: fadeIn 0.5s ease-in forwards;
    animation-delay: 1.2s; /* Synchronisiert mit der Breitenanimation */
}

/*.tooltip-inner {*/
/*    background-color: white;*/
/*    color: black;*/
/*    font-size: 20px;*/
/*    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;*/
/*    !*white-space: nowrap;*!*/
/*    border: 2px solid #2864A8;*/
/*}*/

/*.bs-tooltip-top .arrow::before {*/
/*    border-top-color: #333333;*/
/*}*/

/* Traffic light*/

/* Brighter traffic light container */
.traffic-light {
    width: 35px;
    height: 100px;
    background: linear-gradient(145deg, #4a4d58, #323641); /* Slightly brighter shading */
    border-radius: 15px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    box-shadow: inset 2px 2px 5px #2d3037, inset -2px -2px 5px #5a5f69;
}

/* Default styling for traffic light states */
.light {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(145deg, #bbbcc1, #989aa1); /* Brighter 'off' state */
    box-shadow: inset 1px 1px 3px #a1a3aa, inset -1px -1px 3px #cdd0d7;
    transition: background 0.3s, box-shadow 0.3s;
}

/* Active state for red light (brighter red tones) */
.bg-red {
    background: linear-gradient(145deg, #ff5c5c, #ff4040); /* Bright red */
    box-shadow: 0 0 10px 2px #ff5c5c;
}

/* Active state for yellow light (brighter yellow tones) */
.bg-yellow {
    background: linear-gradient(145deg, #ffe768, #ffd233); /* Bright yellow */
    box-shadow: 0 0 10px 2px #ffe768;
}

/* Active state for green light (brighter green tones) */
.bg-green {
    background: linear-gradient(145deg, #66ff79, #4de062); /* Bright green */
    box-shadow: 0 0 10px 2px #66ff79;
}

/* Off state for inactive lights (lighter dim effect) */
.bg-off {
    background: linear-gradient(145deg, #7a7d82, #5e6167); /* Brighter dim effect */
    box-shadow: none;
}

/* End T-L*/

/* Traffic-Vertikal  */

/* Traffic light*/

/* Brighter traffic light container */
.traffic-light-kompakt {
    width: 70px; /* Breiter, aber kleiner als vorher */
    height: 25px; /* Flacher */
    background: linear-gradient(145deg, #4a4d58, #323641);
    border-radius: 10px;
    padding: 4px;
    display: flex;
    flex-direction: row; /* Horizontal */
    justify-content: space-between;
    align-items: center;
    box-shadow: inset 1px 1px 3px #2d3037, inset -1px -1px 3px #5a5f69;
}

.light-kompakt {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(145deg, #bbbcc1, #989aa1);
    box-shadow: inset 1px 1px 2px #a1a3aa, inset -1px -1px 2px #cdd0d7;
    transition: background 0.3s, box-shadow 0.3s;
}

/* Aktive Farben – bleiben gleich */
.bg-red {
    background: linear-gradient(145deg, #ff5c5c, #ff4040);
    box-shadow: 0 0 6px 1px #ff5c5c;
}

.bg-yellow {
    background: linear-gradient(145deg, #ffe768, #ffd233);
    box-shadow: 0 0 6px 1px #ffe768;
}

.bg-green {
    background: linear-gradient(145deg, #66ff79, #4de062);
    box-shadow: 0 0 6px 1px #66ff79;
}

/* Inaktiv */
.bg-off {
    background: linear-gradient(145deg, #7a7d82, #5e6167);
    box-shadow: none;
}


/* End T-L*/

#teilnehmerPanels .move-up,
#teilnehmerPanels .move-up-disabled {
    top: 5px;
    /*background-color: lightblue;*/
    border: none;
    font-size: 12px;
    border-radius: 3px;
}

#teilnehmerPanels .move-down,
#teilnehmerPanels .move-down-disabled {
    top: 5px;
    /*background-color: lightgreen;*/
    border: none;
    font-size: 12px;
    border-radius: 3px;
}

#teilnehmerPanels .move-up:hover, #teilnehmerPanels .move-down:hover {
    cursor: pointer;
}

#teilnehmerPanels .move-up:focus, #teilnehmerPanels .move-down:focus {
    outline: none;
}

.toggle-details-btn {
    font-weight: bold;
}

.seminarFilterLabel.label-default {
    background-color: rgba(201, 201, 201, 0.4) !important;
    color: #191919 !important;
}

.seminarFilterLabel.label-default:hover {
    background-color: rgba(201, 201, 201, 0.6) !important;
    color: #191919 !important;
}

.teilnehmerFieldset.moving {
    background-color: #ffff99;
    transition: background-color 1s ease;
}

.teilnehmerFieldset.deleting {
    background-color: #ffcccc;
    transition: background-color 1s ease;
}

.teilnehmerFieldset.deleting.cancel {
    background-color: transparent;
}

.teilnehmerFieldset.moved {
    background-color: transparent;
}

/*.warteListenFielset .legendTitle::before{

    content: "(Warteliste) ";
    color: #8a6d3b;

}*/

.teilnehmerFieldset {
    padding-left: 10px;
    padding-right: 10px;
}

.warteListenFielset {
    border-right: 2px dashed #8a6d3b;
    border-left: 2px dashed #8a6d3b;
}

.warteListenFielset.first {
    border-top: 2px dashed #8a6d3b;

}

.warteListenFielset:last-child {
    border-bottom: 2px dashed #8a6d3b;

}

#warteliste-heading {
    color: #8a6d3b;
}

.cartButton::before {
    content: "Auf die Merkliste";

}

.cartButton.in-cart::before {
    content: "Von Liste entfernen";
}

.cartButtonWithIcons::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 400; /* solid style */
    content: "\f005"; /* Unicode für Stern (★) */
}

.cartButtonWithIcons.in-cart::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900; /* solid style */
    color: yellow !important;
    content: "\f005";}

/*!* Default state for outlined star with btn-ca-sm *!*/
/*.cartButtonWithIcons.btn-ca-sm::before {*/
/*    font-family: "Font Awesome 5 Free";*/
/*    font-weight: 400; !* Outlined star style *!*/
/*    content: "\f005"; !* Unicode for the star icon *!*/
/*    color: yellow; !* Transparent fill *!*/
/*    text-shadow: 0 0 1px black; !* Black outline *!*/
/*}*/

/*!* Active 'in-cart' state with btn-ca-sm *!*/
/*.cartButtonWithIcons.btn-ca-sm.in-cart::before {*/
/*    font-family: "Font Awesome 5 Free";*/
/*    font-weight: 400; !* Maintain outline style *!*/
/*    content: "\f005"; !* Display the star *!*/
/*    color: #000; !* Solid black fill *!*/
/*    text-shadow: none; !* Remove the outline shadow when active *!*/
/*}*/


.guestRegisterButton.in-cart {
    display: none;
}


.seminarDetailsToggle {
    color: #e16539 !important;
}

.seminarDetailsToggle::before {
    content: "Hier klicken um die Seminardetails anzuzeigen";

}

.seminarDetailsToggle[aria-expanded="true"]::before {
    content: "Hier klicken um die Seminardetails zu schließen";
}

/* Modern Tooltip Styles */
.tooltip {
    font-family: 'Arial', sans-serif;
    font-size: 12px;
    opacity: 1;
}

.tooltip-inner {
    max-width: 250px;
    padding: 8px 12px;
    background-color: rgba(255, 255, 255, 0.98);
    color: #333;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    font-size: 14px;
    line-height: 1.4;
    font-family: 'Arial', sans-serif;
}

.tooltip.bs-tooltip-top .arrow::before {
    border-top-color: rgba(0, 0, 0, 0.1);
}

.tooltip.bs-tooltip-bottom .arrow::before {
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

.tooltip.bs-tooltip-left .arrow::before {
    border-left-color: rgba(0, 0, 0, 0.1);
}

.tooltip.bs-tooltip-right .arrow::before {
    border-right-color: rgba(0, 0, 0, 0.1);
}

