.banner {
    display: block;
    width: 30%;
    max-width: 800px;
    border-radius: 8px;
    margin-left: auto;
    margin-right: 50%;
}

.value-pos {
    color: green;
}

.value-neg {
    color: red;
}

.value-neutral {
    color: gray;
}

/* Einheitliche Kartenhöhe */
.card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Bildhöhe fixiert, skaliert proportional */
.card-img-top {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

/* Karteninhalt gleichmäßig verteilt */
.card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* ✅ Erhöhte Spezifität für .ane Komponente */
.ane {
    background: white;
    border-radius: 5px;
    border-style: solid;
    border-color: blue;
    border-width:0.1cqmax;
    box-shadow: 2px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 300;
    color: blue;
    margin-bottom: 20px;
    margin-top: 20px;
}

.ane_einrueckung {
    font-size: 15px;
    font-style: italic;
    margin-left: 15px;
}

#amortizationModal .modal-body {
    max-height: 70vh;
}

#amortizationModal .table thead {
    position: sticky;
    top: 0;
    z-index: 10;
}

@media print {
    .modal-header, .modal-footer {
        display: none;
    }
}