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

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

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

.tl-toolkits-table th {
    background-color: #f5f5f5;
    font-weight: bold;
}

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

.tl-toolkits-table tr:hover {
    background-color: #f1f1f1;
}

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

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

/* Column width settings for checklist table - updated for visible columns only */
.tl-toolkits-checklist-table th:nth-child(1),
.tl-toolkits-checklist-table td:nth-child(1) {
    width: 5%;
    text-align: center;
}

.tl-toolkits-checklist-table th:nth-child(2),
.tl-toolkits-checklist-table td:nth-child(2) {
    width: 70%;
}

.tl-toolkits-checklist-table th:nth-child(3),
.tl-toolkits-checklist-table td:nth-child(3) {
    width: 25%;
}

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