/* IMport bootstrap icons */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.3.0/font/bootstrap-icons.css");
/* Documentation of the icons: https://icons.getbootstrap.com/ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: Verdana, sans-serif;
    font-weight: normal;
    font-size: 14px;
}

h1.main-heading {
    margin-bottom: 15px;
}

.container {
    display: flex;
    flex-direction: row;
    height: 100%;
}

.navigation {
    flex: 0 0 20%;
    background-color: #ffcd00;
    color: white;
    padding-top: 20px;
    -webkit-box-shadow: 8px 0px 15px 0px rgba(0, 0, 0, 0.23);
    box-shadow: 8px 0px 15px 0px rgba(0, 0, 0, 0.23);
    z-index: 99;
}

.navigation ul {
    list-style: none;
}

.navigation ul li a {
    color: #000;
    text-decoration: none;
    display: block;
    padding: 10px 20px;
}

.navigation ul li a:hover {
    text-decoration: none;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.67);
}

.navigation-rpo {
    background-color: #ffcd00;
    color: white;
}

.navigation-tv {
    background-color: #325472;
    color: #fff;
}

.navigation-sz ul li a, .navigation-ga ul li a, .navigation-tv ul li a {
    color: #fff;
}

.navigation-ga {
    background-color: #003865;
    color: #fff;
}

.navigation-sz {
    background-color: #004e8b;
    color: #fff;
}


.content {
    flex: 1;
    padding: 20px;
    background-color: #fff;
    overflow-y: scroll;
    z-index: 50;
}


fieldset {
    padding: 10px;
    font-weight: normal;
}

fieldset.artikeleingabe {
    margin-bottom: 15px;
    border: 2px solid black;
}

legend {
    padding: 5px 10px;
    /*font-weight: bold;*/
}

button, input {
    padding: 5px 10px;
}

button#getArticledata {
    margin: 10px 0;
}


.outer-ki-editor {
    display: flex;
    justify-content: space-between;
}

.prompt-selects {
    display: flex;
}

.prompt-selects div {
    width: 45%;
}

.prompt-outer fieldset {
    margin: 15px 0;
}

select {
    padding: 5px 10px;
}

.outer-ki-editor > div {
    width: 45%;
    padding: 10px;
}

div#artikeldaten {
    min-width: 50%;
}

#original_text_content {
    min-height: 150px;
    max-height: 450px;
    overflow-y: scroll;
}

div.original-label {
    margin: 15px 0 5px 0;
    font-weight: bold;
}

label {
    display: block;
    font-weight: bold;
    margin: 5px 0;
}

.single-ai-title-outer {
    padding: 10px 5px;
    border: 1px solid #a2a2a2;
    margin-bottom: 10px;
    background-color: #ececec;
}

.single-ai-title-inner {
    margin-bottom: 5px;
}

.single-ai-title-footer {
    display: flex;
    flex-direction: row;
}

.single-ai-title-footer > div {
    width: 50%;
}

.ki-titel-feedback-outer {
    text-align: right;
}

.ki-titel-feedback-outer i {
    margin-right: 10px;
}

.green {
    background-color: green;
    color: white;
}

.copybutton {
    cursor: pointer;
}

div.artikeleingabe-outer {
    display: flex;
}

div.artikeleingabe-outer > div {
    width: 50%;
    padding: 10px;
}

hr {
    margin: 10px 0;
}

textarea.prompt-preview {
    padding: 10px;
}

#messageOverlay {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 30%;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 16px;
    z-index: 1000;
    -webkit-box-shadow: 5px 5px 12px 5px rgba(0, 0, 0, 0.45);
    box-shadow: 5px 5px 12px 5px rgba(0, 0, 0, 0.45);
}

#article-quick-preview-title {
    margin-bottom: 10px;
    font-weight: bold;
}

.article-quick-preview #article-quick-preview-teaser {
    text-align: justify;
    font-size: 12px;
}


.bouncing-ball {
    width: 40px; /* twice the radius */
    height: 40px; /* twice the radius */
    background-color: #FFCD00FF;
    border-radius: 50%; /* makes it a circle */
    position: relative;
    animation: bounce 1s infinite ease;
}

.bouncing-ball {
    width: 40px;
    height: 40px;
    background-color: #FFCD00FF;
    border-radius: 50%;
    position: relative;
    animation: bounce 4s infinite;
}



.extracted-data .results {
    margin-top: 25px;
}

.extracted-data .results h2 {
    margin-bottom: 25px;
}

.extracted-data input {
    width:100%;
    display: block;
    margin-bottom: 10px;
}

.extracted-data p {
    margin: 10px 10px 25px 10px;
}

.extracted-data ul, .extracted-data ul li {
    list-style-type: none;
}

.extracted-data ul {
    margin-bottom: 25px;
}

.extracted-images {
    width:100%;
    max-width:1280px ;


}

.extracted-images img {
    max-width: 100%;
    height:auto;
}





a.button-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    background-color: #2563eb; /* professionelles Blau */
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

a.button-link:hover {
    background-color: #1e40af;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

a.button-link:active {
    background-color: #1e3a8a;
    transform: translateY(0);
}
