::-webkit-scrollbar {
        display: none;
        }
        
 .teste {
    display: flex;
    justify-content: flex-start; /* Alinha os .alert-card ao início da linha */
    flex-wrap: wrap; /* Permite que os .alert-card se ajustem em múltiplas linhas, se necessário */
    margin-top: 16px; /* Ajuste de margem se necessário */
}
    .alert-card {
    display: inline-block;
    width: 150px;
    height: 30px;
    margin: 8px;
    padding: 2px;
    border-radius: 11px;
    text-align: left; /* Alinha o texto à esquerda */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: width 0.3s ease, height 0.3s ease;
    margin-left: 65px;
    font-family: "Nunito", sans-serif;
    font-style: light;  
}
    .alert-card:hover {
        width: 150px; /* Expande o retângulo na largura ao passar o mouse */
        height: 80px; /* Aumenta a altura para acomodar as informações extras */
    }
    .alert-red {
        background-color: #880f0a;
        color: #000;
    }
    .alert-yellow {
        background-color: #ffc100;
        color: #000;
    }
    .alert-card h4 {
        margin: 5px 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        text-align: center;
        color: #fff;
        font-weight: 300;
        text-transform: uppercase;
    }
    .alert-tittle {
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;          /* Tamanho da fonte do título */
      font-weight: bold;        /* Deixa o título em negrito */
      text-transform: uppercase; /* Transforma todo o texto em maiúsculo */
      color: #333;              /* Cor do texto */
      letter-spacing: 2px;      /* Espaçamento entre as letras */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); /* Sombra do texto para um efeito de profundidade */
      font-family: 'Arial', sans-serif; /* Fonte moderna e limpa */
      padding: auto;
    }
    .alert-card p {
        margin: 0;
        opacity: 0;
        transition: opacity 0.3s ease;
        white-space: nowrap;
        margin-left: 10px;
    }
    .alert-card:hover p {
        opacity: 1; /* Exibe as informações ao passar o mouse */
    }
canvas {
    border: none;
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;
}
.d-flex.align-items-center.mt-4 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eaeaea;
    background-color: #c4c4c4;
    border-radius: 27px;
    width: 93%;
   
    min-height: 71px;
    margin: 20px 0;
      margin-top: 20px;
    padding: 8px 15px;
}

.d-flex.align-items-center.mt-4 img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.d-flex.align-items-center.mt-4 .fs-18 {
    font-size: 18px;
    font-weight: 600;
}

.d-flex.align-items-center.mt-4 .ms-auto {
    font-size: 20px;
    font-weight: 700;
    color: #4caf50;
}

.fs-20 {
    font-size: 20px;
    font-weight: bold;
    margin-right: 15px;
}


@media (max-width: 600px) {
    .teste {
        display: flex;
        flex-wrap: wrap;
        justify-content: start; /* Centraliza as colunas */
    }

    .alert-card {
        display: inline-block;
        width: calc(50% - 20px); /* Cada botão ocupará metade da largura menos as margens */
        height: 30px;
        margin: 8px 10px; /* Ajusta a margem para dar espaço entre as colunas */
        padding: 2px;
        border-radius: 11px;
        text-align: left;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        transition: width 0.3s ease, height 0.3s ease;
        font-family: "Nunito", sans-serif;
        font-style: light;
    }
}

