.licenses{

    table {
        width: 100%;
        border-collapse: collapse;
        margin: 2rem 0;
        font-size: 0.95rem;
        font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS';
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        table-layout: auto;
        word-break: break-word;
    }
    
    thead {
        background-color: #f5f5f5;
    }
    
    th, td {
        padding: 12px 16px;
        border: 1px solid #ddd;
        vertical-align: top;
        text-align: left;
    }
    
    th {
        background-color: #f0f0f0;
        font-weight: bold;
    }
    
    tbody tr:nth-child(even) {
        background-color: #fafafa;
    }
    
    tbody tr:hover {
        background-color: #f1f1f1;
    }
    
    td {
        white-space: pre-line;
    }
    
    @media screen and (max-width: 768px) {
        table {
            display: block;
            overflow-x: auto;
            white-space: nowrap;
        }
    }
}
