/* Licenses Page Specific Styles */

.licenses-page {
    padding: 8rem 0 4rem;
    min-height: calc(100vh - 200px);
}

.licenses-content {
    max-width: 900px;
    margin: 0 auto;
}

.licenses-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.company-info {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    text-align: center;
    border: 2px solid #e2e8f0;
}

.company-info p {
    margin: 0.5rem 0;
    font-size: 1.0625rem;
    color: var(--text-color);
}

.company-info p:first-child {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.licenses-table-wrapper {
    overflow-x: auto;
    margin-top: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.licenses-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
}

.licenses-table thead {
    background-color: var(--primary-color);
    color: var(--white);
}

.licenses-table th {
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 1.125rem;
}

.licenses-table th:first-child {
    width: 200px;
}

.licenses-table tbody tr {
    border-bottom: 1px solid #e2e8f0;
    transition: background-color 0.2s ease;
}

.licenses-table tbody tr:last-child {
    border-bottom: none;
}

.licenses-table tbody tr:hover {
    background-color: var(--light-color);
}

.licenses-table td {
    padding: 1.25rem 1.5rem;
    color: var(--text-color);
    line-height: 1.6;
}

.licenses-table td:first-child {
    font-weight: 600;
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .licenses-page {
        padding: 6rem 0 3rem;
    }
    
    .licenses-content h1 {
        font-size: 2rem;
    }
    
    .company-info {
        padding: 1.5rem;
    }
    
    .licenses-table th,
    .licenses-table td {
        padding: 1rem;
        font-size: 0.9375rem;
    }
    
    .licenses-table th:first-child {
        width: 120px;
    }
}

@media (max-width: 480px) {
    .licenses-content h1 {
        font-size: 1.75rem;
    }
    
    .licenses-table th,
    .licenses-table td {
        padding: 0.75rem;
        font-size: 0.875rem;
    }
    
    /* Stack table on very small screens */
    .licenses-table thead {
        display: none;
    }
    
    .licenses-table tbody tr {
        display: block;
        margin-bottom: 1rem;
        border: 2px solid #e2e8f0;
        border-radius: 8px;
    }
    
    .licenses-table td {
        display: block;
        padding: 0.75rem 1rem;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .licenses-table td:last-child {
        border-bottom: none;
    }
    
    .licenses-table td:first-child {
        background-color: var(--light-color);
        font-size: 1rem;
        padding: 1rem;
    }
}
