/* Estilos para Alertas do Sistema */
.Alert {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 8px 20px;
    font-size: 14px;
    /*box-shadow: 0 2px 5px rgba(0,0,0,0.2);*/
    min-height: 50px;
}

.Alert-icon {
    font-size: 40px;
    margin-right: 15px;
    flex-shrink: 0;
    line-height: 1;
    color: #F05143;
}

.Alert-content {
    flex: 1;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    display: flex;
    flex-direction: column;
    color: #BA291C;
}

.Alert-title {
    font-weight: bold;
    margin-bottom: 2px;
}

.Alert-message {
    font-weight: normal;
    margin-top: 2px;
}

.Alert--warning {
    background-color: #FFF1C7
    ;
    color: #F5A60A;
}
.Alert-text {
    color: #A16207;
}

.Alert--warning .Alert-title {
    color: #713F12;
}

.Alert--warning .Alert-message {
    color: #A16207;
}

.Alert--warning .Alert-icon {
    color: #F5A60A;
}

.Alert--danger {
    background-color: #FFE5E3;
    color: #fff;
}

.Alert--danger .Alert-icon {
    color: #F05143;
}

.Alert--success {
    background-color: #28a745;
    color: #fff;
}

.Alert--info {
    background-color: #17a2b8;
    color: #fff;
}

