/* Container principal */
.cards-container-projeto-cards {
    width: 100%;
    max-width: 100%;
    background: #E3F2FD;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.card-info-projeto-cards {
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.subtitle-checagem-projeto-cards {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
}

.responsavel-foto-card-projeto-cards {
    border-radius: 5px;
    object-fit: cover;
}

.img-responsavel-card-projeto-cards {
    width: 40px;
    height: 40px;
}

.responsavel-info-projeto-cards {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    gap: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.atualizacao-info-projeto-cards {
    flex: 1;
    text-align: left;
}

.popover-projeto-trigger-card-projeto-cards {
    position: relative;
    display: inline-block;
    cursor: pointer;
    color: #007bff;
    white-space: nowrap;
}

.popover-projeto-trigger-card-projeto-cards:hover::after {
    content: attr(data-content);
    position: absolute;
    top: -30px;
    left: 0;
    background: #f9f9f9;
    border: 1px solid #ccc;
    padding: 5px;
    font-size: 12px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    display: inline-block;
}

.card-cabecalho-projeto-cards {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    gap: 4px;
}

.btn-editar-card-projeto-cards {
    background-color: transparent;
    border: none;
    color: #007bff;
    cursor: pointer;
    padding: 5px 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.btn-editar-card-projeto-cards:hover {
    color: #ff0000;
}

.card-number-projeto-cards {
    font-weight: bold;
    margin-right: 10px;
}

.file-toggle-projeto-cards {
    margin-top: 10px;
    border-radius: 6px;
    max-width: fit-content;
    overflow: hidden;
}

.file-header-projeto-cards {
    cursor: pointer;
    padding: 8px 12px;
    font-weight: 500;
    max-width: fit-content;
}

.toggle-icon-projeto-cards {
    transition: transform 0.3s ease;
    color: #007bff;
}

.file-toggle-projeto-cards.open .toggle-icon-projeto-cards {
    transform: rotate(180deg);
}

.file-content-projeto-cards {
    max-width: 50%;
}

.hidden-projeto-cards {
    display: none;
}

.img-card-projeto-cards {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.arquivo-card-projeto-cards {
    text-decoration: none;
    color: #007bff;
    font-weight: 500;
    margin-left: 25px;
}

.icon-arquivo-projeto-cards {
    margin-right: 5px;
}

.alteracoes-lista-projeto-cards {
    font-size: 14px;
    color: #959595;
}

.alteracoes-lista-projeto-cards li {
    margin-bottom: 2px;
}