/* --- Buttons.css --- */

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

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

/* Icon innerhalb des Buttons */
.btn-custom i {
    margin-right: 10px;
}

/* Icon-Button ohne Rahmen oder Hintergrund */
.btn-icon {
    background-color: transparent;
    color: inherit;
    border: none;
    padding: 0;
}

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

/* Farbvarianten für Icons */
.icon-blue { color: blue; }
.icon-orange { color: orange; }
.icon-red { color: red; }
.icon-green { color: green; }

/* Hinweis: Wenn möglich, wiederkehrende Farben und Abstände zentral verwalten */


@media (max-width: 576px) {
    .btn-custom {
        width: 100%;
        justify-content: center;
        font-size: 1rem;
        padding: 12px;
    }

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

    .d-flex.flex-wrap.mt-3.mt-md-0 {
        flex-direction: column;
        align-items: stretch;
    }
}
