.btn-apontamento-horas-projeto-apontamento-horas {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 5px;
    border: none;
    background-color: #e6f0ff;
    color: #007BFF;
    transition: background-color 0.2s, color 0.2s;
}

.btn-apontamento-horas-projeto-apontamento-horas:hover {
    background-color: #d0e4ff;
}

.header-apontamento-projeto-apontamento-horas {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding: 10px 15px;
    background-color: #E3F2FD;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.titulo-apontamento-projeto-apontamento-horas {
    font-size: 22px;
    font-weight: 600;
    color: #00314a;
    margin: 0;
}

.tabela-apontamentos-projeto-apontamento-horas {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    background-color: white;
}

.tabela-apontamentos-projeto-apontamento-horas thead {
    background-color: #00314a;
    color: #fff;
}

.tabela-apontamentos-projeto-apontamento-horas th,
.tabela-apontamentos-projeto-apontamento-horas td {
    padding: 10px 12px;
    border-bottom: 1px solid #B3E5FC;
    text-align: left;
    vertical-align: middle;
    color: #fff;
}

.tabela-apontamentos-projeto-apontamento-horas td {
    color: #000;
}

.tabela-apontamentos-projeto-apontamento-horas tbody tr:nth-child(even) {
    background-color: #E3F2FD;
}

.tabela-apontamentos-projeto-apontamento-horas tbody tr:hover {
    background-color: #BBDEFB;
}

.col-acao-projeto-apontamento-horas {
    width: 5%;
    text-align: center;
}

.col-responsavel-projeto-apontamento-horas {
    width: 30%;
}

.col-data-projeto-apontamento-horas {
    width: 12%;
}

.col-tempo-projeto-apontamento-horas {
    width: 10%;
    text-align: center;
}

.col-comentario-projeto-apontamento-horas {
    width: 43%;
}

.img-responsavel-tabela-projeto-apontamento-horas {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 10px;
    object-fit: cover;
    box-shadow: 0 0 3px rgba(0,0,0,0.2);
}