﻿/* Fügen Sie Ihre eigenen Stile hier hinzu */
html, body {
    height: 100%;
    
}

.pagination > a {
    background-color: white;
    color: #9d9d9c;
}

.pagination > li > a {
    background-color: white;
    color: #9d9d9c;
}

.pagination > li > .page-link {
    border: none;
}

.pagination > li > a:focus,
.pagination > li > a:hover,
.pagination > li > span:focus,
.pagination > li > span:hover {
    color: #5a5a5a;
    background-color: #eee;
    border-color: #ddd;
}

.pagination > .active > a {
    color: white;
    background-color: #9d9d9c !Important;
    border: none !Important;
    border-radius: 0.2rem;
}

.pagination > .active > a:hover {
    background-color: #5a5a5a !Important;
    border: none;
}

.img {
    border: 1px solid #000; 
	/* display: block; */
    /* margin-left: auto; */
    /* margin-right: auto; */
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem; 
}

.image-container {
    position: relative;
    display: inline-block;
}

.img-fluid {
    display: block;
    width: 100%;
    height: auto;
    max-height: 200px;
}

/*.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
}*/

.image-container image-overlay {
    position: absolute;
    bottom: 0;
    color: black;
    width: 100%;
    transition: .5s ease;
    opacity: 0;
    text-align: center;
    padding: 20px;
}


.image-container::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.5); /* Weiß mit 50% Transparenz */
    z-index: 90;
}


.download-button {
    z-index: 100;
    position: absolute;
    bottom: 26px;
    right: 25px;
    width: 35px; /* Breite des Containers erhöht */
    height: 35px; /* Höhe des Containers erhöht */
    display: inline-flex;
    align-items: center;
    justify-content: center; /* Zentriert das Icon horizontal und vertikal */
    text-decoration: none;
    padding: 10px;
    background-color: #e30613; /* Hintergrundfarbe anpassen */
    color: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}


.imagetitle {
    bottom: 20px;
    font-size: 10pt;
    left: 30px;
}

#app {
	min-height: 100%;
}

#footer {
	position:fixed;
    bottom: 0;
    width: 100%;
	height: 4em;
	margin-top: 10px;
}

.username {
	font-size: 8pt;
}

.logo {
    width: 50px;
}

.loading-centered {
    float: none;
    margin: 50px auto;
    display: table;
}

.fa-spin-custom {
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
}

.btn-login {
    border: 2px solid black; /* Breite und Farbe des Rahmens */
    padding: 10px 20px; /* optional: Padding um den Text */
}