/* CSS para tag novo e banner informativo */

.circunferencia-novo {
    width: 8px;
    height: 8px;
    background-color: #3291F0;
    margin-left: 5px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}

.nav-container ul li.active a .circunferencia-novo {
    background-color: #e1e1e1;
}

.tag-novo-badge {
    background-color: #d8eafa;

    color: #2b7ce9;
    /* light blue */
    /* blue text */
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    margin-left: 8px;
    display: inline-block;
    vertical-align: middle;
}

.tag-novo-badge-btn {
    background-color: #d8eafa;
    color: #2b7ce9;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    margin-left: 12px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    vertical-align: middle;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    min-width: 50px;
    height: 16px;
}

.banner-informativo-novo {
    background-color: #3091f0;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 16px;
    margin-top: 20px;
    margin-bottom: 20px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    /* subtle shadow */
    min-height: 62px;
    height: auto;
    position: relative;
}

banner-informativo {
    display: block;
    width: 100%;
}


.banner-informativo-novo .banner-conteudo {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.banner-informativo-novo .badge {
    background-color: #d8eafa;

    color: #2b7ce9;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    height: 30px;
    width: 109px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.banner-informativo-novo .texto-informativo {
    color: white;
    font-size: 13px;
    line-height: 1.4;
}

/* Close button style adjustment if using md-button inside */
.banner-informativo-novo md-button.md-icon-button {
    margin: 0;
    padding: 0;
    width: 30px;
    height: 30px;
    min-height: 30px;
}

.banner-informativo-novo md-icon {
    width: 18px;
    height: 18px;
    color: white;
    cursor: pointer;
}

/* Estilos responsivos para telas pequenas */
@media screen and (max-width: 900px) {
    .banner-informativo-novo {
        padding: 16px 40px 16px 16px;
        /* Aumenta padding lateral para não sobrepor close button */
        align-items: flex-start;
    }

    .banner-informativo-novo .banner-conteudo {
        gap: 8px;
    }

    .banner-informativo-novo md-button.md-icon-button {
        position: absolute;
        top: 8px;
        right: 8px;
    }

    .window-container.window-agenda .nav-container ul li a .tag-novo-badge {
        display: block;
        margin: 4px auto 0 auto;
        width: fit-content;
    }
}