.historico-lista-container {
    max-height: 500px;
    overflow-y: auto;
    padding-right: 5px;
}

.card-historico-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-left: 4px solid #ccc;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none !important;
}

.historico-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.user-name {
    font-weight: 600;
    color: #37474f;
    font-size: 14px;
}

.data-card {
    background: #f1f3f4;
    color: #757575;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
}

.resposta-container {
    height: calc(100vh - 180px);
    overflow-y: auto;
    padding-right: 15px;
}

.resposta-item {
    margin-bottom: 10px;
    background: #cccccc30;
    padding: 8px;
    border-radius: 8px;
}

.resposta-pergunta {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
}

.resposta-pergunta i {
    color: #42A5F5;
    margin-right: 10px;
    margin-top: 2px;
    font-size: 14px;
}

.resposta-texto {
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
    line-height: 1.4;
}

.resposta-respondida {
    background-color: #FFFFFF90;
    color: #555;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 13px;
    line-height: 1.6;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    border: 1px solid #edf2f7;
}

.card-historico-item.card-selected {
    background-color: #e3f2fd;
    border-left-color: #1565C0 !important;
    box-shadow: inset 0 0 5px rgba(0,0,0,0.05);
}

.card-historico-item.card-selected .user-name {
    color: #1565C0;
}

.card-historico-item.card-selected i {
    color: #1565C0 !important;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #cfd8dc; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #b0bec5; }