/* _content/GO_RCL/Components/ContactForm.razor.rz.scp.css */
.contact-form[b-6lqbkevwv3] {
    margin: 1rem 0;
    position: relative;
}

.contact-form h1[b-6lqbkevwv3] {
    padding: 2em 1px;
    color: #F97300;
}

.contact-form .right[b-6lqbkevwv3] {
    max-width: 600px;
}

.contact-form .right .btn-secondary[b-6lqbkevwv3] {
    background: #F97300;
    color: #fff;
    border: 0;
}

.contact-form .right .form-control[b-6lqbkevwv3]::placeholder {
    color: #888;
    font-size: 16px;
}
/* _content/GO_RCL/Components/IntroBild.razor.rz.scp.css */
.fade-in[b-04pp7zq3nh] {
    opacity: 0;
    /* translateY(20px) → z.B. translateY(50px)	Bild kommt weiter "von unten" */
    transform: translateY(20px);
    /* 1s → z.B. 0.5s	Animation geht schneller */
    /* ease → z.B. ease-in-out	Animation wird weicher am Anfang und Ende */
    transition: opacity 1s ease, transform 1s ease;
}

/* Sobald FadeInCompleted = true, kommt dieser Zustand */
.fade-in[style*="opacity: 1"][b-04pp7zq3nh] {
    opacity: 1;
    transform: translateY(0);
}
/* _content/GO_RCL/Components/LoginKomp.razor.rz.scp.css */
.login-container[b-almcarnc7y] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 20px;
}

.login-card[b-almcarnc7y] {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    width: 100%;
    max-width: 400px;
}

.login-header[b-almcarnc7y] {
    text-align: center;
    margin-bottom: 2rem;
}

    .login-header h1[b-almcarnc7y] {
        color: #333;
        margin-bottom: 0.5rem;
    }

    .login-header h2[b-almcarnc7y] {
        color: #666;
        font-size: 1.1rem;
        font-weight: normal;
    }

.input-group-text[b-almcarnc7y] {
    background-color: #f8f9fa;
    border-right: none;
}

.form-control:focus[b-almcarnc7y] {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.debug-info[b-almcarnc7y] {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 8px;
}

@media (max-width: 576px) {
    .login-card[b-almcarnc7y] {
        margin: 10px;
        padding: 1.5rem;
    }
}
/* _content/GO_RCL/Components/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-ejju9ows7f],
.components-reconnect-repeated-attempt-visible[b-ejju9ows7f],
.components-reconnect-failed-visible[b-ejju9ows7f],
.components-pause-visible[b-ejju9ows7f],
.components-resume-failed-visible[b-ejju9ows7f],
.components-rejoining-animation[b-ejju9ows7f] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-ejju9ows7f],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-ejju9ows7f],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-ejju9ows7f],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-ejju9ows7f],
#components-reconnect-modal.components-reconnect-retrying[b-ejju9ows7f],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-ejju9ows7f],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-ejju9ows7f],
#components-reconnect-modal.components-reconnect-failed[b-ejju9ows7f],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-ejju9ows7f] {
    display: block;
}


#components-reconnect-modal[b-ejju9ows7f] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-ejju9ows7f 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-ejju9ows7f 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-ejju9ows7f 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-ejju9ows7f]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-ejju9ows7f 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-ejju9ows7f {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-ejju9ows7f {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-ejju9ows7f {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-ejju9ows7f] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-ejju9ows7f] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-ejju9ows7f] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-ejju9ows7f] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-ejju9ows7f] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-ejju9ows7f] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-ejju9ows7f] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-ejju9ows7f 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-ejju9ows7f] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-ejju9ows7f {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* _content/GO_RCL/Components/SponsorList.razor.rz.scp.css */
figure[b-wfbd32x8dn] {
    margin: 0 0 5px;
}

figcaption[b-wfbd32x8dn] {
    line-height: 1;
}

.sponsor[b-wfbd32x8dn] {
    border: solid;
    border-color: white;
    background-color: white;
    -webkit-box-shadow: 5px 5px 15px 0px #000000;
    box-shadow: 5px 5px 15px 0px #000000;
    font-size: 8pt;
    text-align: center;
}

figure.sponsor[b-wfbd32x8dn] {
    min-width: 150px; /* Fixe Breite für alle */
    min-height: 100px; /* Fixe Höhe */

}

    figure .sponsor img[b-wfbd32x8dn] {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Bild wird schön skaliert */
}
/* _content/GO_RCL/Components/Suchen/Search.razor.rz.scp.css */
.e-custom-height[b-kgisucc2ch] {
    height: 26px;
}

.e-control-wrapper.e-numeric.e-float-input.e-style.e-input-group .e-float-text.e-label-top[b-kgisucc2ch] {
    color: red;
    font-size: large;
}

strong[b-kgisucc2ch] {
    color: blue;
}

#div_container[b-kgisucc2ch] {
    display: block; /* nur für das Suchen */
}

.contentZeitraum[b-kgisucc2ch] {
    background-image:none;
    background-color: #7CB9E8;
}

.contentOptions[b-kgisucc2ch] {
    background-image: none;
    background-color: white;
}

.contentSuchworte[b-kgisucc2ch] {
    background-image: none;
    background-color: #5ECC7D;
}

.contentWortsuche[b-kgisucc2ch] {
    background-image: none;
    background-color: #E8937C;
}

.contentInhalt[b-kgisucc2ch] {
    background-image: none;
    background-color: #C28CAE;
}

.contentSearchOption[b-kgisucc2ch] {
    padding: 15px;
}

.SuchenButton[b-kgisucc2ch] {
    width: 135px;
    box-shadow: inset 0px 1px 0px 0px #f5978e;
    background: linear-gradient(to bottom, #f24537 5%, #c62d1f 100%);
    background-color: #f24537;
    border-radius: 6px;
    border: 1px solid #d02718;
    display: inline-block;
    cursor: pointer;
    color: #ffffff;
    font-family: Arial;
    font-size: 15px;
    font-weight: bold;
    padding: 22px 24px;
    text-decoration: none;
    text-shadow: 0px 1px 0px #810e05;
}

    .SuchenButton:hover[b-kgisucc2ch] {
        background: linear-gradient(to bottom, #c62d1f 5%, #f24537 100%);
        background-color: #c62d1f;
    }

    .SuchenButton:active[b-kgisucc2ch] {
        position: relative;
        top: 1px;
    }

.eingabe[b-kgisucc2ch] {
    font-size: small;
    font-weight: bold;
}

.eingabe_Label[b-kgisucc2ch] {
    font-size: medium;
    font-weight: bold;
    margin-bottom: 5px;
}

.ueberschrift2[b-kgisucc2ch] {
    font-size: large;
    font-weight: bold;
    margin-bottom: 10px;
}

.ueberschrift1[b-kgisucc2ch] {
    font-size: x-large;
    font-weight: bold;
    margin-bottom: 10px;
}

.items[b-kgisucc2ch] {
    font-size: small;
}


.grid-Verknuepfung[b-kgisucc2ch] {
    display: grid;
    grid-template-columns: 130px 20px 200px;
    grid-template-rows: 25px 25px;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}


.rechts[b-kgisucc2ch] {
    margin-left: auto;
    margin-right: 0;
    width: 140px;
}

.zentriert[b-kgisucc2ch] {
    margin-left: auto;
    margin-right: auto;
}

b[b-kgisucc2ch] {
    color: darkred;
}
/* _content/GO_RCL/Components/Suchen/SearchExponat.razor.rz.scp.css */
#div_container[b-6omf52do2c] {
    display: block; /* nur für das Suchen */
}

.contentZeitraum[b-6omf52do2c] {
    background-image:none;
    background-color: #7CB9E8;
}

.contentOptions[b-6omf52do2c] {
    background-image: none;
    background-color: white;
}

.contentSuchworte[b-6omf52do2c] {
    background-image: none;
    background-color: #5ECC7D;
}

.contentWortsuche[b-6omf52do2c] {
    background-image: none;
    background-color: #E8937C;
}

.contentInhalt[b-6omf52do2c] {
    background-image: none;
    background-color: #C28CAE;
}

.contentSearchOption[b-6omf52do2c] {
    padding: 15px;
}

.SuchenButton[b-6omf52do2c] {
    width: 135px;
    box-shadow: inset 0px 1px 0px 0px #f5978e;
    background: linear-gradient(to bottom, #f24537 5%, #c62d1f 100%);
    background-color: #f24537;
    border-radius: 6px;
    border: 1px solid #d02718;
    display: inline-block;
    cursor: pointer;
    color: #ffffff;
    font-family: Arial;
    font-size: 15px;
    font-weight: bold;
    padding: 22px 24px;
    text-decoration: none;
    text-shadow: 0px 1px 0px #810e05;
}

    .SuchenButton:hover[b-6omf52do2c] {
        background: linear-gradient(to bottom, #c62d1f 5%, #f24537 100%);
        background-color: #c62d1f;
    }

    .SuchenButton:active[b-6omf52do2c] {
        position: relative;
        top: 1px;
    }

.eingabe[b-6omf52do2c] {
    font-size: small;
    font-weight: bold;
}

.eingabe_Label[b-6omf52do2c] {
    font-size: medium;
    font-weight: bold;
    margin-bottom: 5px;
}

.ueberschrift2[b-6omf52do2c] {
    font-size: large;
    font-weight: bold;
    margin-bottom: 10px;
}

.ueberschrift1[b-6omf52do2c] {
    font-size: x-large;
    font-weight: bold;
    margin-bottom: 10px;
}

.items[b-6omf52do2c] {
    font-size: small;
}


.grid-Verknuepfung[b-6omf52do2c] {
    display: grid;
    grid-template-columns: 130px 20px 200px;
    grid-template-rows: 25px 25px;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}


.rechts[b-6omf52do2c] {
    margin-left: auto;
    margin-right: 0;
    width: 140px;
}

.zentriert[b-6omf52do2c] {
    margin-left: auto;
    margin-right: auto;
}

b[b-6omf52do2c] {
    color: darkred;
}
/* _content/GO_RCL/Dialogs/BildEditDialog/BildAnmerkungTab.razor.rz.scp.css */
.text-multiline textarea[b-tr6muf3kmn] {
    height: 300px !important;
}
/* _content/GO_RCL/Dialogs/BildEditDialog/BildBeschreibungTab.razor.rz.scp.css */
.text-multiline textarea[b-lkjtj74hzi] {
    height: 300px !important;
}
/* _content/GO_RCL/Dialogs/BildEditDialog/BildEditDialog.razor.rz.scp.css */
/* Customizing the dialog content */
.e-dialog.e-control .e-dlg-content[b-lwpc9usrgh] {
    padding: 15px;
}


/*.e-listboxtool-wrapper .e-listbox-tool, .e-listboxtool-container .e-listbox-tool {
    overflow-x: none;
}*/

.text-multiline textarea[b-lwpc9usrgh] {
    height: 330px !important;
}

/*.upload-image {
    height: auto;
    max-height: 300px;
    width: auto;
    max-width: 630px;
    display: block;
    margin: auto;
    background-color: #CCCCCC;
}*/

.e-tab[b-lwpc9usrgh] {
    border: 1px solid rgb(0 0 0);
    margin-top: 20px;
    padding: 20px;
}

.e-footer-content[b-lwpc9usrgh] {
    margin-top: 20px;
}

.e-custom-height[b-lwpc9usrgh] {
    height: 300px;
}

/*.text-multiline textarea {
    height: 300px !important;
}*/

.sb-header[b-lwpc9usrgh] {
    z-index: 100;
}

/*.control-section .dual-list-wrapper {
    width: 100%;
    margin: 0 0 10px;
    display: flex;
    max-height: 300px;
}

.dual-list-groupa,
.dual-list-groupb {
    width: 50%;
}

    .dual-list-groupb .e-listbox-container,
    .dual-list-groupb h4 {
        width: 87%;
        margin-left: 15px;
    }

@media screen and (max-width: 590px) {
    .control-section .dual-list-wrapper {
        width: 100%;
    }

    .dual-list-groupa {
        width: 56%;
    }

    .dual-list-groupb {
        width: 44%;
    }
}
*/
/* _content/GO_RCL/Dialogs/BildEditDialog/BildRubrikTab.razor.rz.scp.css */
.e-listboxtool-wrapper .e-listbox-tool[b-9mqoces14x], .e-listboxtool-container .e-listbox-tool[b-9mqoces14x] {
    overflow-x: none;
}

.control-section .dual-list-wrapper[b-9mqoces14x] {
    width: 100%;
    margin: 0 0 10px;
    display: flex;
    max-height: 300px;
}

.dual-list-groupa[b-9mqoces14x],
.dual-list-groupb[b-9mqoces14x] {
    width: 50%;
}

    .dual-list-groupb .e-listbox-container[b-9mqoces14x],
    .dual-list-groupb h4[b-9mqoces14x] {
        width: 87%;
        margin-left: 15px;
    }

@media screen and (max-width: 590px) {
    .control-section .dual-list-wrapper[b-9mqoces14x] {
        width: 100%;
    }

    .dual-list-groupa[b-9mqoces14x] {
        width: 56%;
    }

    .dual-list-groupb[b-9mqoces14x] {
        width: 44%;
    }
}
/* _content/GO_RCL/Dialogs/BildEditDialog/BildSchlagwortTab.razor.rz.scp.css */
.e-listboxtool-wrapper .e-listbox-tool[b-ofoc64oahw], .e-listboxtool-container .e-listbox-tool[b-ofoc64oahw] {
    overflow-x: none;
}

.control-section .dual-list-wrapper[b-ofoc64oahw] {
    width: 100%;
    margin: 0 0 10px;
    display: flex;
    max-height: 300px;
}

.dual-list-groupa[b-ofoc64oahw],
.dual-list-groupb[b-ofoc64oahw] {
    width: 50%;
}

    .dual-list-groupb .e-listbox-container[b-ofoc64oahw],
    .dual-list-groupb h4[b-ofoc64oahw] {
        width: 87%;
        margin-left: 15px;
    }

@media screen and (max-width: 590px) {
    .control-section .dual-list-wrapper[b-ofoc64oahw] {
        width: 100%;
    }

    .dual-list-groupa[b-ofoc64oahw] {
        width: 56%;
    }

    .dual-list-groupb[b-ofoc64oahw] {
        width: 44%;
    }
}
/* _content/GO_RCL/Dialogs/BildEditDialog/BildUploadTab.razor.rz.scp.css */
.upload-image[b-082yjpt18x] {
    height: auto;
    max-height: 300px;
    width: auto;
    max-width: 630px;
    display: block;
    margin: auto;
    background-color: #CCCCCC;
}
/* _content/GO_RCL/Dialogs/BildEditDlg.razor.rz.scp.css */
/* Customizing the dialog content */
.e-dialog.e-control .e-dlg-content[b-y30jaixxc3] {
    padding: 15px;
}

.e-listboxtool-wrapper .e-listbox-tool[b-y30jaixxc3], .e-listboxtool-container .e-listbox-tool[b-y30jaixxc3] {
    overflow-x: none;
}

.text-multiline textarea[b-y30jaixxc3] {
    height: 330px !important;
} 

.upload-image[b-y30jaixxc3] {
    height: auto;
    max-height: 300px;
    width: auto;
    max-width: 630px;
    display: block;
    margin: auto;
    background-color: #CCCCCC;
}

.e-tab[b-y30jaixxc3] {
    border: 1px solid rgb(0 0 0);
    margin-top: 20px;
    padding: 20px;
}

.e-footer-content[b-y30jaixxc3] {
    margin-top: 20px;
}

.e-custom-height[b-y30jaixxc3] {
    height: 300px;
}

.text-multiline textarea[b-y30jaixxc3] {
    height: 300px !important;
}

.sb-header[b-y30jaixxc3] {
    z-index: 100;
}

.control-section .dual-list-wrapper[b-y30jaixxc3] {
    width: 100%;
    margin: 0 0 10px;
    display: flex;
    max-height: 300px;
}

.dual-list-groupa[b-y30jaixxc3],
.dual-list-groupb[b-y30jaixxc3] {
    width: 50%;
}

.dual-list-groupb .e-listbox-container[b-y30jaixxc3],
.dual-list-groupb h4[b-y30jaixxc3] {
    width: 87%;
    margin-left: 15px;
}

@@media screen and (max-width: 590px) {
     .control-section .dual-list-wrapper[b-y30jaixxc3] {
         width: 100%;
     }

     .dual-list-groupa[b-y30jaixxc3] {
         width: 56%;
     }

     .dual-list-groupb[b-y30jaixxc3] {
         width: 44%;
     }
 }
/* _content/GO_RCL/Dialogs/BildHelperDlg.razor.rz.scp.css */
.dummy[b-79fbikcp4l] {
}

.e-dialog .e-dlg-header-content[b-79fbikcp4l] {
    background-color: #3f51b5 !important;
}

.e-dlg-header-content[b-79fbikcp4l] {
    background-color: #3f51b5 !important;
}
/* _content/GO_RCL/Dialogs/BildinfoDlg.razor.rz.scp.css */
.modal-header[b-7x5pe8ptvk] {
    background-color: var(--dlg-header-color) !important;
}

.modal-dialog[b-7x5pe8ptvk] {
    overflow-y: initial !important
}

.modal-body[b-7x5pe8ptvk] {
}

.modal-footer[b-7x5pe8ptvk] {
    background-color: gainsboro;
}

.info-Body[b-7x5pe8ptvk] {
    height: 75vh;
    overflow-y: auto;
}

b[b-7x5pe8ptvk] {
    /* color: black !important; */
}

titel[b-7x5pe8ptvk] {
    color: darkred;
    font-weight: bold;
}
/* _content/GO_RCL/Dialogs/ExponatEditDlg.razor.rz.scp.css */
.upload-image[b-bmxdyiqguk] {
    height: auto;
    max-height: 300px;
    width: auto;
    max-width: 630px;
    display: block;
    margin: auto;
    background-color: #CCCCCC;
}

.e-tab[b-bmxdyiqguk] {
    border: 1px solid rgb(0 0 0);
    margin-top: 20px;
    padding: 20px;
}

.e-footer-content[b-bmxdyiqguk] {
    margin-top: 20px;
}

/*
.e-custom-height {
    height: 300px;
}
*/

[b-bmxdyiqguk] .exponat-beschreibung textarea {
    height: 130px !important;
    background-color: azure;
}

.sb-header[b-bmxdyiqguk] {
    z-index: 100;
}


.control-section .dual-list-wrapper[b-bmxdyiqguk] {
    width: 100%;
    margin: 0 0 10px;
    display: flex;
    max-height: 300px;
}

.dual-list-groupa[b-bmxdyiqguk],
.dual-list-groupb[b-bmxdyiqguk] {
    width: 50%;
}

.dual-list-groupb .e-listbox-container[b-bmxdyiqguk],
.dual-list-groupb h4[b-bmxdyiqguk] {
    width: 87%;
    margin-left: 15px;
}


@@media screen and (max-width: 590px) {
     .control-section .dual-list-wrapper[b-bmxdyiqguk] {
         width: 100%;
     }

     .dual-list-groupa[b-bmxdyiqguk] {
         width: 56%;
     }

     .dual-list-groupb[b-bmxdyiqguk] {
         width: 44%;
     }
 }
/* _content/GO_RCL/Dialogs/ExportProgressDialog.razor.rz.scp.css */
.export-progress-dialog .e-dlg-content[b-5uero2bh9f] {
    padding: 30px 20px !important;
}

.export-dialog-content[b-5uero2bh9f] {
    text-align: center;
    padding: 20px;
}

    .export-dialog-content .spinner[b-5uero2bh9f] {
        border: 4px solid #f3f3f3;
        border-top: 4px solid #0078d4;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        animation: spin-b-5uero2bh9f 1s linear infinite;
        margin: 0 auto 20px auto;
    }

@keyframes spin-b-5uero2bh9f {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.export-message[b-5uero2bh9f] {
    margin: 0;
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

/* Optional: Overlay-Styling anpassen */
.export-progress-dialog .e-dlg-overlay[b-5uero2bh9f] {
    background-color: rgba(0, 0, 0, 0.6);
}
/* _content/GO_RCL/Dialogs/FreigabeaufforderungDlg.razor.rz.scp.css */
.upload-image[b-290tm1edke] {
    height: auto;
    max-height: 300px;
    width: auto;
    max-width: 630px;
    display: block;
    margin: auto;
    background-color: #CCCCCC;
}

.e-tab[b-290tm1edke] {
    border: 1px solid rgb(0 0 0);
    margin-top: 20px;
    padding: 20px;
}

.e-footer-content[b-290tm1edke] {
    margin-top: 20px;
}

.e-custom-height[b-290tm1edke] {
    height: 300px;
}

.text-multiline textarea[b-290tm1edke] {
    height: 300px !important;
}

.sb-header[b-290tm1edke] {
    z-index: 100;
}

.control-section .dual-list-wrapper[b-290tm1edke] {
    width: 100%;
    margin: 0 0 10px;
    display: flex;
    max-height: 300px;
}

.dual-list-groupa[b-290tm1edke],
.dual-list-groupb[b-290tm1edke] {
    width: 50%;
}

.dual-list-groupb .e-listbox-container[b-290tm1edke],
.dual-list-groupb h4[b-290tm1edke] {
    width: 87%;
    margin-left: 15px;
}

@@media screen and (max-width: 590px) {
     .control-section .dual-list-wrapper[b-290tm1edke] {
         width: 100%;
     }

     .dual-list-groupa[b-290tm1edke] {
         width: 56%;
     }

     .dual-list-groupb[b-290tm1edke] {
         width: 44%;
     }
 }
/* _content/GO_RCL/Dialogs/ImageUpload.razor.rz.scp.css */
.upload-image[b-9kjm8df2ba] {
    height: auto;
    max-height: 300px;
    width: auto;
    max-width: 630px;
    display: block;
    margin: auto;
    background-color: #CCCCCC;
}

.e-tab[b-9kjm8df2ba] {
    border: 1px solid rgb(0 0 0);
    margin-top: 20px;
    padding: 20px;
}

.e-footer-content[b-9kjm8df2ba] {
    margin-top: 20px;
}

.e-custom-height[b-9kjm8df2ba] {
    height: 300px;
}

.text-multiline textarea[b-9kjm8df2ba] {
    height: 300px !important;
}

.sb-header[b-9kjm8df2ba] {
    z-index: 100;
}

.control-section .dual-list-wrapper[b-9kjm8df2ba] {
    width: 100%;
    margin: 0 0 10px;
    display: flex;
    max-height: 300px;
}

.dual-list-groupa[b-9kjm8df2ba],
.dual-list-groupb[b-9kjm8df2ba] {
    width: 50%;
}

    .dual-list-groupb .e-listbox-container[b-9kjm8df2ba],
    .dual-list-groupb h4[b-9kjm8df2ba] {
        width: 87%;
        margin-left: 15px;
    }

@@media screen and (max-width: 590px) {
    .control-section .dual-list-wrapper[b-9kjm8df2ba] {
        width: 100%;
    }

    .dual-list-groupa[b-9kjm8df2ba] {
        width: 56%;
    }

    .dual-list-groupb[b-9kjm8df2ba] {
        width: 44%;
    }
}
/* _content/GO_RCL/Dialogs/LiteraturEditDlg.razor.rz.scp.css */
/* Customizing the dialog content */
.e-dialog.e-control .e-dlg-content[b-kcp4et7wkh] {
    padding: 15px;
}

.e-tab[b-kcp4et7wkh] {
    border: 1px solid rgb(0 0 0);
    margin-top: 20px;
    padding: 20px;
}

.e-footer-content[b-kcp4et7wkh] {
    margin-top: 20px;
}

.e-custom-height[b-kcp4et7wkh] {
    height: 300px;
}

.text-multiline textarea[b-kcp4et7wkh] {
    height: 300px !important;
}
/* _content/GO_RCL/Dialogs/LizenzEditDlg.razor.rz.scp.css */
.dummy[b-6bh58oaql5] {
}

.e-dialog .e-dlg-header-content[b-6bh58oaql5] {
    background-color: #3f51b5 !important;
}

.e-dlg-header-content[b-6bh58oaql5] {
    background-color: #3f51b5 !important;
}
/* _content/GO_RCL/Dialogs/RubrikEditDlg.razor.rz.scp.css */
.dummy[b-eodfamhpqz] {
}

.e-dialog .e-dlg-header-content[b-eodfamhpqz] {
    background-color: #3f51b5 !important;
}

.e-dlg-header-content[b-eodfamhpqz] {
    background-color: #3f51b5 !important;
}
/* _content/GO_RCL/Dialogs/SchlagwortDlg.razor.rz.scp.css */
.dummy[b-jycovsv3ta] {
}

.e-dialog .e-dlg-header-content[b-jycovsv3ta] {
    background-color: #3f51b5 !important;
}

.e-dlg-header-content[b-jycovsv3ta] {
    background-color: #3f51b5 !important;
}
/* _content/GO_RCL/Dialogs/SuchwortEdit.razor.rz.scp.css */
.dummy[b-9icbu9ss1t] {
}

.e-dialog .e-dlg-header-content[b-9icbu9ss1t] {
    background-color: #3f51b5 !important;
}

.e-dlg-header-content[b-9icbu9ss1t] {
    background-color: #3f51b5 !important;
}
/* _content/GO_RCL/Pages/BilderList.razor.rz.scp.css */
[b-1tx3ac1uvn] .text-multiline textarea {
    height: 300px !important;
}

[b-1tx3ac1uvn] .bildbeschreibung {
    height: 180px;
}


.image img[b-1tx3ac1uvn] {
    height: 140px;
    width: auto;
    /*border-radius: 50px; */
    box-shadow: inset 0 0 1px #e0e0e0, inset 0 0 14px rgba(0,0,0,0.2);
}
/* _content/GO_RCL/Pages/LiteraturList.razor.rz.scp.css */
.main-row[b-uiyvh1sf83] {
    background-color: white;
}

.e-headertext[b-uiyvh1sf83] {
    padding-left: 10px;
}
/* _content/GO_RCL/Pages/PersonList.razor.rz.scp.css */

.e-add-icon[b-2pcyw4c9i3]:before {
    content: "\e805"
}

.e-edit-icon[b-2pcyw4c9i3]:before {
    content: "\e730"
}

.e-toolbar .e-tbar-btn:hover[b-2pcyw4c9i3] {
    background: #c0e3a1;
    border: 1px solid green;
}
/* _content/GO_RCL/Pages/TextEdit/TextEdit.razor.rz.scp.css */
[b-us0zb7np07] .text-multiline textarea {
    height: 300px !important;
} 

[b-us0zb7np07] .bildbeschreibung {
    height: 180px; 
}

.image img[b-us0zb7np07]  {
    height: 150px;
    width: auto;
    box-shadow: inset 0 0 1px #e0e0e0, inset 0 0 14px rgba(0, 0, 0, 0.2);
}

[b-us0zb7np07] .e-richtexteditor {
    min-height: 100px;
    max-height: 100%;
}

[b-us0zb7np07] .no_content.e-richtexteditor .e-rte-content .e-content {
    /*Can set your desired height*/
    min-height: 100px;
    padding: 5px;
    max-height: 50%;
}

[b-us0zb7np07] .e-tab {
    padding: 2em;
    border: 1px solid black;
    max-height: 100%;
}

[b-us0zb7np07] .e-filterbar {
    display: none;
} 

.e-tab .e-content[b-us0zb7np07], .e-tab .e-content .e-item[b-us0zb7np07], .e-tab .e-content .e-item > div[b-us0zb7np07], .e-tab .e-content .e-blazor-template[b-us0zb7np07] {
    height: 80% !important;
}

.e-code-mirror[b-us0zb7np07]::before {
    content: '\e345';
}

.e-html-preview[b-us0zb7np07]::before {
    content: '\e350';
}

.CodeMirror-linenumber[b-us0zb7np07],
.CodeMirror-gutters[b-us0zb7np07] {
    display: none;
}

.sb-header[b-us0zb7np07] {
    z-index: 100;
}

.control-section .dual-list-wrapper[b-us0zb7np07] {
    width: 100%;
    margin: 0 0 10px;
    display: flex;    
    max-height:80%;
}

.dual-list-groupa[b-us0zb7np07],
.dual-list-groupb[b-us0zb7np07] {
    width: 50%;
}

.dual-list-groupb .e-listbox-container[b-us0zb7np07],
.dual-list-groupb h4[b-us0zb7np07] {
    width: 87%;
    margin-left: 15px;
}

@@media screen and (max-width: 590px) {
    .control-section .dual-list-wrapper[b-us0zb7np07] {
        width: 100%;
    }

    .dual-list-groupa[b-us0zb7np07] {
        width: 56%;
    }

    .dual-list-groupb[b-us0zb7np07] {
        width: 44%;
    }
}
/* _content/GO_RCL/Pages/TextList.razor.rz.scp.css */
thead[b-2dt97wz2kv] {
    background-color: var(--grid-header-bkgd-color);
    color: white;
}

.bg-in-bearbeitung[b-2dt97wz2kv] {
    background-color: #ffe5e5; /* hellrot */
}
/* _content/GO_RCL/Shared/BilderGallery.razor.rz.scp.css */
.dummy[b-9do1vm1mih] {
}

.imageThumbnail[b-9do1vm1mih] {
    /* height: 200px; */
    width: auto;
}

.bildBeschreibung[b-9do1vm1mih] {
    font-size: small;
}
/* _content/GO_RCL/Shared/ButtonLink.razor.rz.scp.css */
/* Basis-Button-Styles, falls noch nicht vorhanden */
.btnLink[b-wrfwa0y1ms] {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: none;
    /*background-color: #4CAF50;*/ /* Standardfarbe */
    color: white !important;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s, transform 0.2s;
}

/* Hover-Effekt: Button wird heller */
.btnLink:hover[b-wrfwa0y1ms] {
    background-color:cornflowerblue;
    transform: scale(1.09);
}

/* Active-Effekt: Button wird dunkler */
.btnLink:active[b-wrfwa0y1ms] {
    background-color: #397d3c;
    transform: scale(0.98);
}

/* Optional für NavLink aktive Seite */
.e-active[b-wrfwa0y1ms] {
    background-color: #2e7d32 !important;
    font-weight: bold;
}
/* _content/GO_RCL/Shared/DokumentGallery.razor.rz.scp.css */
.dummy[b-8qqlnu4yfz] {
}

.imageThumbnail[b-8qqlnu4yfz] {
    /* height: 200px; */
    width: auto;
}

.bildBeschreibung[b-8qqlnu4yfz] {
    font-size: small;
}
/* _content/GO_RCL/Shared/EmptyLayout.razor.rz.scp.css */
.page[b-nyldnnejpc] {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: white;
}

.main[b-nyldnnejpc] {
    flex: 1;
}

.sidebar[b-nyldnnejpc] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-nyldnnejpc] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-start;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-nyldnnejpc]  a, .top-row .btn-link[b-nyldnnejpc] {
        white-space: nowrap;
        margin-left: 1.5rem;
    }

    .top-row a:first-child[b-nyldnnejpc] {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-nyldnnejpc] {
        display: none;
    }

    .top-row.auth[b-nyldnnejpc] {
        justify-content: space-between;
    }

    .top-row a[b-nyldnnejpc], .top-row .btn-link[b-nyldnnejpc] {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-nyldnnejpc] {
        flex-direction: row;
    }

    .sidebar[b-nyldnnejpc] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-nyldnnejpc] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .main > div[b-nyldnnejpc] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* _content/GO_RCL/Shared/ErgebnisBilderKomp.razor.rz.scp.css */
.imageThumbnail[b-l7lvvdh5j0] {
    width: 100%;
    max-width: 100% !important;
    height: auto;
}

b[b-l7lvvdh5j0] {
    color: darkred;
}


.icon-white[b-l7lvvdh5j0] {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 6px;
    filter: invert(1);
}

.myButton[b-l7lvvdh5j0] {
    box-shadow: 3px 4px 0px 0px #1564ad;
    background: linear-gradient(to bottom, #79bbff 5%, #378de5 100%);
    background-color: #79bbff;
    border-radius: 5px;
    border: 1px solid #337bc4;
    display: inline-block;
    cursor: pointer;
    color: #ffffff;
    font-family: Arial;
    font-size: 17px;
    font-weight: bold;
    /*padding:12px 44px;*/
    text-decoration: none;
    text-shadow: 0px 1px 0px #528ecc;
}

    .myButton:hover[b-l7lvvdh5j0] {
        background: linear-gradient(to bottom, #378de5 5%, #79bbff 100%);
        background-color: #378de5;
    }

    .myButton:active[b-l7lvvdh5j0] {
        position: relative;
        top: 1px;
    }
/* _content/GO_RCL/Shared/ErgebnisLiteraturKomp.razor.rz.scp.css */
.icon-white[b-zrqgnvc6iw] {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 6px;
    filter: invert(1);
}

.myButton[b-zrqgnvc6iw] {
    box-shadow: 3px 4px 0px 0px #1564ad;
    background: linear-gradient(to bottom, #79bbff 5%, #378de5 100%);
    background-color: #79bbff;
    border-radius: 5px;
    border: 1px solid #337bc4;
    display: inline-block;
    cursor: pointer;
    color: #ffffff;
    font-family: Arial;
    font-size: 17px;
    font-weight: bold;
    /*padding:12px 44px;*/
    text-decoration: none;
    text-shadow: 0px 1px 0px #528ecc;
}

    .myButton:hover[b-zrqgnvc6iw] {
        background: linear-gradient(to bottom, #378de5 5%, #79bbff 100%);
        background-color: #378de5;
    }

    .myButton:active[b-zrqgnvc6iw] {
        position: relative;
        top: 1px;
    }
/* _content/GO_RCL/Shared/ErgebnisTextKomp.razor.rz.scp.css */
.Zeitangabe[b-n8qkbkt328] {
    color: firebrick;
}

.Fussnote[b-n8qkbkt328] {
    font-size: smaller;
}

.icon-white[b-n8qkbkt328] {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 6px;
    filter: invert(1);
}

.myButton[b-n8qkbkt328] {
    box-shadow: 3px 4px 0px 0px #1564ad;
    background: linear-gradient(to bottom, #79bbff 5%, #378de5 100%);
    background-color: #79bbff;
    border-radius: 5px;
    border: 1px solid #337bc4;
    display: inline-block;
    cursor: pointer;
    color: #ffffff;
    font-family: Arial;
    font-size: 17px;
    font-weight: bold;
    /*padding:12px 44px;*/
    text-decoration: none;
    text-shadow: 0px 1px 0px #528ecc;
}

    .myButton:hover[b-n8qkbkt328] {
        background: linear-gradient(to bottom, #378de5 5%, #79bbff 100%);
        background-color: #378de5;
    }

    .myButton:active[b-n8qkbkt328] {
        position: relative;
        top: 1px;
    }
/* _content/GO_RCL/Shared/GoLayout.razor.rz.scp.css */
.page[b-0ut3gpncc6] {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: white;
}

.main[b-0ut3gpncc6] {
    flex: 1;
}

.sidebar[b-0ut3gpncc6] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-0ut3gpncc6] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-start;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-0ut3gpncc6]  a, .top-row .btn-link[b-0ut3gpncc6] {
        white-space: nowrap;
        margin-left: 1.5rem;
    }

    .top-row a:first-child[b-0ut3gpncc6] {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-0ut3gpncc6] {
        display: none;
    }

    .top-row.auth[b-0ut3gpncc6] {
        justify-content: space-between;
    }

    .top-row a[b-0ut3gpncc6], .top-row .btn-link[b-0ut3gpncc6] {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-0ut3gpncc6] {
        flex-direction: row;
    }

    .sidebar[b-0ut3gpncc6] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-0ut3gpncc6] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .main > div[b-0ut3gpncc6] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* _content/GO_RCL/Shared/GoNavMenu.razor.rz.scp.css */
.nav-link[b-wvvc58cq4y] {
    color: white;
}

.navbar-toggler[b-wvvc58cq4y] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-wvvc58cq4y] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-wvvc58cq4y] {
    font-size: 1.1rem;
}

.oi[b-wvvc58cq4y] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-wvvc58cq4y] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-wvvc58cq4y] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-wvvc58cq4y] {
        padding-bottom: 1rem;
    }

    .nav-item[b-wvvc58cq4y]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-wvvc58cq4y]  a.active {
    background-color: rgba(255,255,255,0.25);
    color: white;
}

.nav-item[b-wvvc58cq4y]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-wvvc58cq4y] {
        display: none;
    }

    .collapse[b-wvvc58cq4y] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
}
/* _content/GO_RCL/Shared/SearchTabs.razor.rz.scp.css */
#div_container[b-ixirdhziak] {
    display: block; /* nur für das Suchen */
}

.contentZeitraum[b-ixirdhziak] {
    background-image:none;
    background-color: #7CB9E8;
}

.contentOptions[b-ixirdhziak] {
    background-image: none;
    background-color: white;
}

.contentSuchworte[b-ixirdhziak] {
    background-image: none;
    background-color: #5ECC7D;
}

.contentWortsuche[b-ixirdhziak] {
    background-image: none;
    background-color: #E8937C;
}

.contentInhalt[b-ixirdhziak] {
    background-image: none;
    background-color: #C28CAE;
}

.contentSearchOption[b-ixirdhziak] {
    padding: 15px;
}

.SuchenButton[b-ixirdhziak] {
    width: 135px;
    box-shadow: inset 0px 1px 0px 0px #f5978e;
    background: linear-gradient(to bottom, #f24537 5%, #c62d1f 100%);
    background-color: #f24537;
    border-radius: 6px;
    border: 1px solid #d02718;
    display: inline-block;
    cursor: pointer;
    color: #ffffff;
    font-family: Arial;
    font-size: 15px;
    font-weight: bold;
    padding: 22px 24px;
    text-decoration: none;
    text-shadow: 0px 1px 0px #810e05;
}

    .SuchenButton:hover[b-ixirdhziak] {
        background: linear-gradient(to bottom, #c62d1f 5%, #f24537 100%);
        background-color: #c62d1f;
    }

    .SuchenButton:active[b-ixirdhziak] {
        position: relative;
        top: 1px;
    }

.eingabe[b-ixirdhziak] {
    font-size: small;
    font-weight: bold;
}

.eingabe_Label[b-ixirdhziak] {
    font-size: medium;
    font-weight: bold;
    margin-bottom: 5px;
}

.ueberschrift2[b-ixirdhziak] {
    font-size: large;
    font-weight: bold;
    margin-bottom: 10px;
}

.ueberschrift1[b-ixirdhziak] {
    font-size: x-large;
    font-weight: bold;
    margin-bottom: 10px;
}

.items[b-ixirdhziak] {
    font-size: small;
}


.grid-Verknuepfung[b-ixirdhziak] {
    display: grid;
    grid-template-columns: 130px 20px 200px;
    grid-template-rows: 25px 25px;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}


.rechts[b-ixirdhziak] {
    margin-left: auto;
    margin-right: 0;
    width: 140px;
}

.zentriert[b-ixirdhziak] {
    margin-left: auto;
    margin-right: auto;
}

b[b-ixirdhziak] {
    color: darkred;
}
/* _content/GO_RCL/Shared/Tooltip.razor.rz.scp.css */
.tooltip-wrapper[b-izf649gxlr] {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
    cursor: help;
}

span[b-izf649gxlr] {
    visibility: hidden;
    position: absolute;
    width: 120px;
    bottom: 100%;
    left: 50%;
    margin-left: -60px;
    background-color: #363636;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    z-index: 1;
}

    span[b-izf649gxlr]::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        margin-left: -5px;
        border-width: 5px;
        border-style: solid;
        border-color: #555 transparent transparent transparent;
    }

.tooltip-wrapper:hover span[b-izf649gxlr] {
    visibility: visible;
}
/* _content/GO_RCL/Static_SSR/NavigationCard.razor.rz.scp.css */
/*
Beim Mouseover soll die Karte leicht größer (scale) werden
Vielleicht ein sanfter Schatten (box-shadow)
Die Animation soll weich sein (z.B. 0.3 Sekunden Übergang)
*/

.card[b-yh4f8h6y7u] {
    box-shadow: 0 0 20px #ccc;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /*transition sorgt dafür, dass Änderungen weich ablaufen (nicht plötzlich)*/
    border-radius: 10px;
    overflow: hidden;
}

.card:hover[b-yh4f8h6y7u] {
    /*translateY(-8px): leicht nach oben schieben.*/
    /*transform: scale(1.03) vergrößert die Karte um 3% beim Überfahren*/
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card img[b-yh4f8h6y7u] {
    /*width: 100%; */
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    height: 12em;
}

.card-title[b-yh4f8h6y7u] {
    color: var(--custom-color);
}

.card-body[b-yh4f8h6y7u] {
    padding: 1em;
}

/*
Auf Touch-Geräten wird der Hover-Effekt deaktiviert.
Kein "wackeln" oder "unabsichtliches Anheben" beim Scrollen.
*/
@media (hover: none) and (pointer: coarse) {
    .card-hover:hover[b-yh4f8h6y7u] {
        transform: none;
        box-shadow: none;
        background-color: #ffffff;
    }
}

