* { font-family: monospace; }
.z-index-title {
    font-weight: bold;
    color: black;
    margin: 10px 0 5px;
    font-size: 18px;
}
.z-index-ticker {
    background: black;
    color: lime;
    overflow: hidden;
    white-space: nowrap;
    padding: 8px;
    border: 1px solid lime;
}
.z-index-ticker span {
    display: inline-block;
    padding-left: 100%;
    animation: scroll-left 25s linear infinite;
}
@keyframes scroll-left {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-100%); }
}
.z-index-table {
    width: 100%;
    border-collapse: collapse;
    background: black;
    color: white;
}
.z-index-table th, .z-index-table td {
    padding: 8px;
    border: 1px solid lime;
}
.z-index-table th {
    color: white;
}
