/*
 * Styles for Tipster Biletul Zilei plugin.
 */

.bz-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-family: inherit;
}

.bz-table th,
.bz-table td {
    border: 1px solid #e0e6f1;
    padding: 6px 8px;
    vertical-align: top;
}

.bz-table th {
    background-color: #f5f8fc;
    font-weight: 600;
    text-align: left;
}

.bz-table td:nth-child(2) {
    text-align: center;
    vertical-align: middle;
    font-size: 1.2em;
    font-weight: 600;
}

.bz-table td:nth-child(3) {
    text-align: center;
    vertical-align: middle;
    font-size: 1.4em;
}

.bz-table td:first-child > * {
    max-height: 120px;
    overflow: hidden;
}

.bz-verde {
    color: #0a8f3c;
    font-weight: bold;
}

.bz-rosu {
    color: #c00000;
    font-weight: bold;
}

.bz-date {
    margin-top: 24px;
    margin-bottom: 8px;
    font-size: 1.3em;
    font-weight: 600;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .bz-table th,
    .bz-table td {
        font-size: 14px;
    }
    .bz-table td:first-child > * {
        max-height: none;
    }
    .bz-table td:nth-child(2) {
        font-size: 1em;
    }
    .bz-table td:nth-child(3) {
        font-size: 1.2em;
    }
}