.ap-avisos {
    display: flex;
    flex-direction: column;
    gap: 10px;
    cursor:pointer;
}

@keyframes circula {
    0% {
        box-shadow: 0 0 0 0 rgb(255, 159, 59, 70%);
    }
    100% {
        box-shadow: 0 0 0 10px rgba(255, 159, 59, 0);
    }
}
.status-lido {
    color: #888;
    font-size: 14px;
    background: #eee;
    padding: 0px 10px;
    border-radius: 0.475rem;
    border: 1px solid #ccc !important;
}
.status-nao-lido {
    color: #3bb56c;
    font-size: 14px;
    background: #f1fdf6;
    padding: 0px 10px;
    border-radius: 0.475rem;
    border: 1px solid #3bb56c !important;
}
.ap-aviso.nao-visto {
    border: 1px solid #ff953b; 
    animation: circula 1.5s infinite;
    border-radius: 5px;
}
.ap-aviso {
    animation: none;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 5px;
    background: #fff;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    line-height: 1.4em;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.ap-aviso:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2) !important;
    border: 1px solid #066ae0;
}
.ap-aviso img {
    margin: 20px 0 !important;
}
.top-info-aviso {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}
.top-info-aviso p {
    margin:0;
}
.bot-info-aviso {
    margin-top:20px;
}
.ap-paginacao {
    margin-top: 20px;
    text-align: center;
}
.ap-paginacao .page-numbers {
    display: inline-block;
    padding: 5px 10px;
    margin: 0 2px;
    border: 1px solid #ddd;
    text-decoration: none;
    color: #333;
}
.ap-paginacao .page-numbers.current {
    background-color: #0073aa;
    color: #fff;
    border-color: #0073aa;
}
.ap-paginacao .page-numbers:hover {
    background-color: #f1f1f1;
}
.ap-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.ap-modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    border-radius: 5px;
    min-height: 50vh;
}

.ap-close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.ap-close-modal:hover,
.ap-close-modal:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}