/* Allgemeiner Kartenstil */
.wirtschaftlichkeit-card {
    width: 18rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    position: relative;
    border: 1px solid #6c757d; /* Dicker schwarzer Rand um die Karte */
}

/* Kartenbildstil */
.wirtschaftlichkeit-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto;
    margin-top: 20px;
    z-index: 1;
    position: relative;
}

/* Kartenüberschrift */
.wirtschaftlichkeit-card-title {
    font-size: 1.25rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

/* Textstile */
.wirtschaftlichkeit-card-body {
    padding: 5px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

/* Trennstrich zwischen Header und Body */
.wirtschaftlichkeit-card-header {
    font-weight: bold;
    padding-top: 1rem;
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid #ddd;
    text-align: center;
}

/* Footer */
.wirtschaftlichkeit-card-footer {
    font-weight: bold;
    padding: 5px;
    margin-top: 0.5rem;
    text-align: center;
    border-top: 1px solid #ddd;
}

/* Dropdown-Menü in der Card */
.wirtschaftlichkeit-dropdown {
    position: relative;
    display: inline-block;
    margin-top: 1rem;
    z-index: 2;
}

.wirtschaftlichkeit-dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 200px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1;
    right: 0;
    text-align: left;
    border: 1px solid #ccc;
    border-radius: 5px;
    white-space: nowrap;
}

.wirtschaftlichkeit-dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.875rem;
    text-align: left;
}

.wirtschaftlichkeit-dropdown-content a:hover {
    background-color: #f1f1f1;
}

.wirtschaftlichkeit-dropdown-content a i {
    margin-right: 10px;
}

.wirtschaftlichkeit-dropdown-content.show {
    display: block;
}


/* Button-Stile */
.wirtschaftlichkeit-btn {
    display: inline-block;
    font-size: 1rem;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

.wirtschaftlichkeit-btn-primary {
    background-color: #007bff;
    color: white;
    border: none;
}

.wirtschaftlichkeit-btn-primary:hover {
    background-color: #0056b3;
}

.wirtschaftlichkeit-btn-secondary {
    background-color: #6c757d;
    color: white;
    border: none;
}

.wirtschaftlichkeit-btn-secondary:hover {
    background-color: #565e64;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .wirtschaftlichkeit-card {
        padding: 10px;
    }

    .wirtschaftlichkeit-card-title {
        font-size: 1.1rem;
    }

    .wirtschaftlichkeit-btn {
        font-size: 0.9rem;
        padding: 8px 12px;
    }
}


/* Farbiger Rand für ausgefüllte/nicht ausgefüllte Unterprojekte */
.border-left-green {
    border-left: 5px solid #28a745; /* Grün für ausgefüllt */
}

.border-left-red {
    border-left: 5px solid #dc3545; /* Rot für nicht ausgefüllt */
}