/* Terms of Service page styling */


/* Version history styling */
.terms-of-service .version-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    background-color: #f8f9fa;
}

.terms-of-service .version-row:nth-child(even) {
    background-color: #ffffff;
}

.terms-of-service .version-row:last-child {
    border-bottom: none;
}

.terms-of-service .version-date {
    font-size: 1.1rem;
    font-weight: bold;
    color: #212529;
}

