
/* General Styles */
.compliance-toolkit-container {
    max-width: 100%;
    overflow-x: auto;
    margin: 20px 0;
}

/* Table Styles */
.compliance-toolkit-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    background-color: #fff;
    border: 1px solid #ddd;
}

.compliance-toolkit-table th,
.compliance-toolkit-table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}

.compliance-toolkit-table th {
    background-color: #f5f5f5;
    font-weight: bold;
}

.compliance-toolkit-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.compliance-toolkit-table tr:hover {
    background-color: #f1f1f1;
}

/* Download Button */
.download-btn {
font-family: 'Poppins', sans-serif;
}

/* Error Messages */
.error {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 10px;
    border-radius: 4px;
    margin: 20px 0;
}

/* Removed vertical headers - now using normal text orientation */

/* Column width settings for checklist table - updated for visible columns only */
.checklist-table th:nth-child(1),
.checklist-table td:nth-child(1) {
    width: 5%; /* Was column 2 */
    text-align: center; /* Center the Article column content */
}

.checklist-table th:nth-child(2),
.checklist-table td:nth-child(2) {
    width: 70%; /* Was column 3 */
}

.checklist-table th:nth-child(3),
.checklist-table td:nth-child(3) {
    width: 25%; /* Was column 7 */
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .compliance-toolkit-table {
        font-size: 14px;
    }
    
    .compliance-toolkit-table th,
    .compliance-toolkit-table td {
        padding: 6px;
    }
}
