*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body, html{
    height: 100dvh;
    width: 100dvw;
    display: flex;
    justify-content: center;
    align-items: start;
}

body{
    padding: 20px;
}

main{
    width: 1200px;
}

.data, .feature-result{
    max-height: 600px;
    max-width: 100%;
    overflow:auto;
}

/* Table styles */

table {
    width: 100%;
    border-collapse: collapse;
}

table th, table td {
    border: 1px solid #ccc;
    padding: 8px;
    text-align: left;
}

table th {
    background-color: #c7c7c7;
    color: #333;
}

table tr:nth-child(even) td {
    background-color: #f9f9f9;
}

table tr:nth-child(odd) td {
    background-color: #fff;
}

.data .result table, .data .result:has(:not(table)){
    margin-block: 10px;
}

.data .result:not(:has(table)){
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    color: red;
    padding: 20px;
    background-color: #ffc4c4;
    border: 5px solid #ff2e2e;
    border-radius: 50px;
    flex-direction: column;
}

p .table{
    font-weight: 800;
}