table.infotable {
    width: 190%;
    border-collapse: separate;
    border-spacing: 10px;
    margin: 20px 0;
    font-size: 18px;
    text-align: left;
}

table.infotable th, table.infotable td {
    padding: 12px;
    min-width: 110px;
    word-wrap: break-word;
    word-break: break-word;
    white-space: normal;
}

table.infotable th {
    font-weight: bold;
}

table.infotable tr {
    cursor: pointer;
    transition: background-color 0.3s ease;
    line-height: 1.8;
}

table.infotable tr:hover {
    background-color: #f1f1f1;
}

table.infotable td {
    overflow: hidden;
    text-overflow: ellipsis;
}

.custom-result-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.custom-result-image {
    width: 300px;
    height: 300px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.custom-result-link {
    text-decoration: none;
    color: inherit;
    font-size: 16px;
    font-weight: bold;
}

.custom-result-text {
    font-size: 16px;
    font-weight: bold;
    color: black;
}

.custom-result-image:hover {
    background-color: #e0e0e0;
    cursor: pointer;
}
.custom-result-image {
    width: 300px;
    height: 300px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.custom-result-image:before {
    content: "";
    display: block;
    width: 100px;
    height: 100px;
    background-image: url('/personal/images/h-search-left-doc.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.custom-result-link {
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    position: absolute;
    bottom: 10px;
    text-align: center;
}