.comments-box {
    display: none;
    position: fixed; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%);
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 15px;
    width: 420px;
    max-height: 70vh;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    font-family: Arial, sans-serif;
}

.comments-title {
    font-size: 15px;
    margin-bottom: 15px;
    font-weight: 500;
    color: #111;
    text-align: left;
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment-item {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.comment-item:last-child {
    border-bottom: none;
}

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

.comment-date {
    color: #e74c3c; /* rojo */
    font-weight: 500;
}

.comment-user {
    color: #333;
    font-weight: bold;
    font-size: 13px;
}

.comment-body {
    font-size: 13px;
    color: #444;
    white-space: pre-wrap;
    text-align: left;
}

.comentario-hover-container:hover .comments-box {
    display: block;
}
