/** Alert **/

.alert {
    padding: 10px 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid transparent;
    position: relative;
    font-family: Arial, sans-serif;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.alert-icon {
    font-size: 22px; /* größer, gleich für alle Icons */
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px; /* kleine Vertikale Anpassung */
}

.alert-message {
    flex: 1;
}

.alert .btn-close {
    position: absolute;
    top: 8px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    font-weight: bold;
    color: inherit;
    cursor: pointer;
    line-height: 1;
}

.alert.fade.show { opacity: 1; transition: opacity 0.3s ease-out; }
.alert.fade.hide { opacity: 0; height: 0; padding: 0; margin: 0; overflow: hidden; transition: all 0.3s ease; }

.alert-success { background: #d1e7dd; color: #0f5132; border-color: #badbcc; }
.alert-danger { background: #f8d7da; color: #842029; border-color: #f5c2c7; }
.alert-warning { background: #fff3cd; color: #664d03; border-color: #ffecb5; }
.alert-info { background: #cff4fc; color: #055160; border-color: #b6effb; }