.result-table{
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
} 

.result-table th, td {
    text-align: left;
    padding: 16px;
    border: 1px solid #ddd;
    vertical-align: middle;
    overflow: hidden;
}

.result-table tr:nth-child(even) {
    background: #f2f2f2;
}

/*all columns in the table will have equal width, regardless of the content within the cells*/
.fixed{
    table-layout: fixed; 
}

/*@media screen and (max-width: 600px){
    .result-table th, td {
        font-size: 10px;
        padding: 5px;
    }
}

@media screen and (max-width: 279px){
    .result-table table th, td {
        font-size: 8px;
        padding: 2px;
    }    
}*/

/*See .search-table in search.css*/
