.btn:not(.ignore) {
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    background-color: #2a2a40;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn i:not(.ignore) {
    font-size: 14px;
}

/* Spezifische Farben */
.btn-add:not(.ignore) {
    background-color: #5a2a91;
}

.btn-add:hover:not(.ignore) {
    background-color: #7135b5;
}

.btn-save:not(.ignore) {
    background-color: #3a3a5f;
}

.btn-save:hover:not(.ignore) {
    background-color: #4d4d75;
}

.btn-delete:not(.ignore) {
    background-color: #912a2a;
}

.btn-delete:hover:not(.ignore) {
    background-color: #b53535;
}

.button-section {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-start; /* oder: center / space-between */
    margin-bottom: 1.5rem;
}

    .button-section .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.6rem 1.2rem;
        font-size: 1rem;
        border-radius: 0.5rem;
        font-weight: 500;
        transition: all 0.2s ease-in-out;
        min-width: 60px;
        text-align: center;
        gap: 0.5rem; /* Abstand zwischen Icon und Text */
    }
