/* Flex-based table container */
.project-item {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #ddd;
    padding: 15px 10px;
    pointer-events: auto;
}

.project-item-row {
    display: flex;
    align-items: center;
    padding: 8px 0;
}

.project-item-header {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
    padding: 15px 10px;
    font-weight: bold;
    pointer-events: none;
}

.project-item:hover,
.project-item-header:hover {
    background-color: #f8f9fa;
    cursor: pointer;
}

.project-item:last-child {
    border-bottom: 1px solid #ddd;
}

.project-item.need-action {
    background-color: #fff3cd;
}

.row-data {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Columns inside flex-table */
.column {
    flex: 1;
    padding: 0 10px;
    text-align: left;
}
.column:nth-child(2) {
    flex: 2; /* For wider columns like language name */
}

.column-title {
    font-weight: bold;
    text-align: left;
}

/* Optional progress bar inside rows */
.progress-container {
    width: 100%;
    height: 6px;
    background-color: #e0e0e0;
    border-radius: 3px;
    margin-top: 5px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background-color: #28a745;
    border-radius: 3px;
    transition: width 0.3s ease;
}
