.pgvis {
    width: calc(100% - 32px);
    margin: 0 auto;
}
.pgvis-header {
    margin: 16px auto;
    padding: 10px;
    border-radius: 16px;
    background-color: #fffff7;
    border: 2px solid #eaeae3;
    box-shadow: 12px 8px 24px #d8d8d1;
    box-sizing: border-box;
}
.pgvis-footer {
    margin: 16px auto;
    padding: 10px;
    color: #999;
    text-align: right;
}
.pgvis-footer a {
    color: #999;
    text-decoration: none;
}
.pgvis-footer a:hover {
    color: #999;
    outline: none;
    text-decoration: underline;
}
.pgvis h2 {
    font-size: 36px;
    text-align: center;
    padding: 10px;
    margin: 0;
}
.pgvis h3 {
    font-size: 30px;
    padding: 10px;
    margin: 0;
    text-align: center;
}
.pgvis h4 {
    font-size: 24px;
    padding: 5px;
    margin: 0;
    text-align: center;
}
.pgvis-tiles {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
}
/* Basic tile grid */
.pgvis-tile {
    margin: 16px auto;
    padding: 10px;
    border-radius: 16px;
    background-color: #fffff7;
    border: 2px solid #eaeae3;
    box-shadow: 12px 8px 24px #d8d8d1;
    box-sizing: border-box;
}
.pgvis-tile-body { min-height: 33vh; }
.pgvis-tile-1  { width: calc(8.34% - 32px); }
.pgvis-tile-2  { width: calc(16.67% - 32px); }
.pgvis-tile-3  { width: calc(25% - 32px); }
.pgvis-tile-4  { width: calc(33.33% - 32px); }
.pgvis-tile-5  { width: calc(41.67% - 32px); }
.pgvis-tile-6  { width: calc(50% - 32px); }
.pgvis-tile-7  { width: calc(58.33% - 32px); }
.pgvis-tile-8  { width: calc(66.67% - 32px); }
.pgvis-tile-9  { width: calc(75% - 32px); }
.pgvis-tile-10 { width: calc(83.33% - 32px); }
.pgvis-tile-11 { width: calc(91.67% - 32px); }
.pgvis-tile-12 { width: calc(100% - 32px); }
/* Table styling */
.pgvis-tile table {
    width: 100%;
    border-collapse: collapse;
}
.pgvis-tile th, .pgvis-tile td {
    padding: 4px;
    border: 1px solid #999;
}
.pgvis-tile th {
    background-color: #d8d8d1;
}
.pgvis-tile tr:nth-child(odd) {
    background-color: #eaeae3;
}
.pgvis-tile tr:hover {
    background-color: #ffee97;
}
