.table-col {
    border: 1px solid #E4E7EC;
    border-radius: 12px;
    overflow: auto;
    background-color: #fff;
    flex-grow: 1;
}

.lt-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
}

.lt-table th {
    color: #1C1C1C;
    background-color: #EEEEEE;
    padding: 12px;
    font-size: 14px;
    text-align: left;
    border-bottom: 1px solid #E0E0E0;
    border-right: 1px solid #E0E0E0;
}

.lt-table th:last-child {
    border-right: none;
}

.lt-table td {
    padding: 12px;
    color: #1C1C1C;
    font-size: 14px;
    border-right: 1px solid #E0E0E0;
}

.lt-table td:last-child {
    border-right: none;
}


.lt-table tbody tr:nth-child(even) {
    background-color: #F7F7F7;
}

.status {
    padding: 1px 10px;
    border-radius: 99px;
    font-size: 12px;
    display: inline-block;
    white-space: nowrap;
}

.status-submitted {
    background-color: #F59E0B14;
    color: #F59E0B;
    border: 1px solid #F59E0B;
}

.status-received {
    background-color: #3B82F614;
    color: #3B82F6;
    border: 1px solid #3B82F6;
}

.status-completed {
    background-color: #22C55E14;
    color: #22C55E;
    border: 1px solid #22C55E;
}

.status-in-progress {
    background-color: #3B82F614;
    color: #3B82F6;
    border: 1px solid #3B82F6;
}

.subject-col {
    width: 58%;
    min-width: 200px;
}

/* Mobile responsive adjustments for subject column */
@media (max-width: 768px) {
    .subject-col {
        width: 35%;
        min-width: 120px;
        max-width: 150px;
    }
    
    .lt-table th,
    .lt-table td {
        font-size: 12px;
        padding: 8px 6px;
    }
    
    .lt-table th:first-child,
    .lt-table td:first-child {
        width: 20%;
        min-width: 80px;
    }
    
    .lt-table th:nth-child(3),
    .lt-table td:nth-child(3) {
        width: 25%;
        min-width: 90px;
    }
    
    /* Hide Date Submitted column on mobile (4th column) */
    .lt-table th:nth-child(4),
    .lt-table td:nth-child(4) {
        display: none;
    }
}

.accordian-drop {
    display: flex;
    align-items: center;
    justify-content: start;
}

.accordian-drop img {
    transition: transform 0.3s ease;
}


.lt-bg-light-gray {
    background-color: #F7F7F7;
}

.lt-text-muted {
    color: #6E6E6E;
}

.accordian-drop {
    cursor: pointer;
}

.chevron-icon {
    transition: transform 0.3s ease;
}