.alertbox-container{
    width: 100%;
    display: flex;
    padding: 0 1em;
    justify-content: left;
    align-items: center;
    margin: 1em 0;
}

.alertbox {
    font-size: 1.1rem;
    /* Cor de fundo e texto da caixa */
    background-color: var(--bg-dark, #fdfdfd);
    color: var(--text-dark, #343a40);
    
    /* Estrutura */
    padding: 1em;
    border-radius: 10px;
    margin: 1em;
    border: 1px solid rgba(0, 0, 0, 0.1); /* Borda sutil */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Sombra mais suave */
    
    /* Garante alinhamento interno se houver elementos inline (como a bolinha) */
    display: flex;
    align-items: center;
}

/* ------------------------------------------------ */
/* 1. WARNING (Âmbar) - (Baseado no seu exemplo) */
/* ------------------------------------------------ */
.alertbox.warning {
    background-color: rgba(var(--rgb-warning), 0.075);
    color: var(--color-text-warning);
    border-left: 5px solid var(--color-warning);
}
.alertbox.warning .status-indicator {
    background-color: rgb(var(--rgb-warning));
}
.alertbox.warning .status-indicator::before {
    background-color: rgb(var(--rgb-warning));
    animation: pulse-ring 1.5s infinite;
}

/* ------------------------------------------------ */
/* 2. INFO (Ciano/Azul) */
/* ------------------------------------------------ */
.alertbox.info {
    background-color: rgba(var(--rgb-info), 0.075);
    color: var(--color-text-info);
    border-left: 5px solid var(--color-info);
}
.alertbox.info .status-indicator {
    background-color: rgb(var(--rgb-info));
}
.alertbox.info .status-indicator::before {
    background-color: rgb(var(--rgb-info));
    animation: pulse-ring 1.5s infinite;
}

/* ------------------------------------------------ */
/* 3. ERROR (Vermelho) */
/* ------------------------------------------------ */
.alertbox.error {
    background-color: rgba(var(--rgb-error), 0.075);
    color: var(--color-text-error);
    border-left: 5px solid var(--color-error);
}
.alertbox.error .status-indicator {
    background-color: rgb(var(--rgb-error));
}
.alertbox.error .status-indicator::before {
    background-color: rgb(var(--rgb-error));
    animation: pulse-ring 1.5s infinite;
}

/* ------------------------------------------------ */
/* 4. SUCCESS (Verde) */
/* ------------------------------------------------ */
.alertbox.success {
    background-color: rgba(var(--rgb-success), 0.075);
    color: var(--color-text-success);
    border-left: 5px solid var(--color-success);
}
.alertbox.success .status-indicator {
    background-color: rgb(var(--rgb-success));
}
.alertbox.success .status-indicator::before {
    background-color: rgb(var(--rgb-success));
    animation: pulse-ring 1.5s infinite;
}

.alertbox .status-indicator {
    /* Garante que a bolinha de pulsação não quebre o layout */
    flex-shrink: 0;
    margin-right: 10px;
}