/* Allgemeiner Button-Stil */
.hfm-btn-custom {
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    margin: 10px 10px;
    font-size: 14px;
    text-align: center;
    color: grey;
    background-color: #f8f9fa;
    border: 1px solid grey;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.hfm-btn-custom i {
    margin-right: 10px;
}

/* Allgemeiner Hover-Effekt für Buttons */
.hfm-btn-custom:hover {
    background-color: #e2e6ea;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

/* Blaues Icon */
.hfm-icon-blue {
    color: blue;
}

/* Orange Icon */
.hfm-icon-orange {
    color: orange;
}

/* Rotes Icon */
.hfm-icon-red {
    color: red;
}

/* Grünes Icon */
.hfm-icon-green {
    color: green;
}

/* Anpassung für Buttons mit transparentem Hintergrund */
.hfm-btn-icon {
    background-color: transparent;
    color: inherit;
    border: none;
    padding: 0;
}

.hfm-btn-icon i {
    margin-right: 5px;
}
