
body {
    background: #eee;
}

span {
    font-size: 12px;
}

a {
    text-decoration: none;
    color: #0062cc;
    border-bottom: 2px solid #0062cc;
}

.box {
    padding: 0;
}

.box-part {
    background: #FFF;
    margin: 30px 0;
    position: relative; /* Ensure position relative is set */
}

.text {
    margin: 20px 0;
}

.fa {
    color: #4183D7;
}

.cardbox:hover {
    transform: scale(1.1);
    background: #232f260a;
}

.prField:hover {
    cursor: pointer;
}

.expired {
    color: grey;
    opacity: 0.6;
}

.expired-box {
    margin: 10px 0;
}

.overlayBoxPR {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Adjust to cover the card-body */
    background: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0; /* Start with opacity 0 */
    transition: opacity 0.3s ease-in-out;
}

.overlay-text {
    color: #fff2ca; /* White text color for better readability */
    font-size: 18px; /* Adjust font size for better readability */
    text-align: center;
    padding: 20px;
    background: rgb(48 43 43 / 50%); /* Optional: Add a semi-transparent background to the text */
}

.overlayBoxPR.active {
    display: flex;
    opacity: 1; /* Set opacity to 1 when active */
}

.card-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative; /* Ensure position relative is set */
}

.card-body .btn {
    margin-top: 10px;
}

#loginFieldset {
    display: none;
    margin-bottom: 25px;
}

.pulsing-button {
    position: relative;
    display: inline-block;
    color: #fff;
    background-color: #28a745; /* Ursprüngliche Farbe */
    border: none;
    border-radius: 0.25em;
    transition: background-color 0.3s ease;
    animation: pulseColor 2s infinite;
}

.pulsing-button:hover {
    background-color: #218838; /* Hover-Farbe */
}

.title {
    height: 100px;
}

#viewlist {
    overflow: auto;
    height: 75vh;
}

.loginDiv {
    cursor: pointer;
}

.loginLabel {
    opacity: 1;
}
b, strong {
    font-weight: bolder;
    color: #135311ee;
    font-size: 1.2em;
    text-decoration: underline;
}
.aktivBody {
    height: 80px;
}

/* Zoom-Effekt für das Modal */
.modal.fade .modal-dialog {
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.modal.show .modal-dialog {
    transform: scale(1);
    opacity: 1;
}

/* Modernes Design */
.modal-content {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.modal-header {
    border-bottom: none;
    padding: 20px;
}

.modal-body {
    padding: 30px;
}

.modal-footer {
    border-top: none;
    padding-bottom: 20px;
}

@keyframes pulseColor {
    0% {
        background-color: #28a745; /* Ursprüngliche Farbe */
    }
    50% {
        background-color: #34d058; /* Zwischenfarbe */
    }
    100% {
        background-color: #28a745; /* Ursprüngliche Farbe */
    }
}

@media (min-width: 576px) {
    .card-body .btn {
        margin-top: 0;
        margin-right: 10px;
    }
}

@media (max-width: 992px) {
    .overlayBoxPR {
        height: 100%; /* Ensure it covers the card-body fully on smaller screens */
    }
}

@media (min-height: 750px) {
    .box-part {
        margin: 10px 0;
    }
    .mb-4 {
        margin-bottom: 0rem !important;
    }
}
