/* BW Alert Styles */
/* Auto-generated by BW.Framework.WebApp AlertTagHelper */
/* This file can be customized - it will never be overwritten */

/* Base alert styles */
.bw-alert {
    position: relative;
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.375rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

/* Alert icon */
.bw-alert-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Alert content */
.bw-alert-content {
    flex-grow: 1;
}

/* Alert heading */
.bw-alert-heading {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* Close button */
.bw-alert-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    opacity: 0.5;
    flex-shrink: 0;
}

.bw-alert-close:hover {
    opacity: 1;
}

/* Alert types */
.bw-alert-primary { background-color: #cfe2ff; border-color: #b6d4fe; color: #084298; }
.bw-alert-secondary { background-color: #e2e3e5; border-color: #d3d6d8; color: #41464b; }
.bw-alert-success { background-color: #d1e7dd; border-color: #badbcc; color: #0f5132; }
.bw-alert-danger { background-color: #f8d7da; border-color: #f5c2c7; color: #842029; }
.bw-alert-warning { background-color: #fff3cd; border-color: #ffecb5; color: #664d03; }
.bw-alert-info { background-color: #cff4fc; border-color: #b6effb; color: #055160; }
.bw-alert-light { background-color: #fefefe; border-color: #fdfdfe; color: #636464; }
.bw-alert-dark { background-color: #d3d3d4; border-color: #bcbebf; color: #141619; }
