.manpower-table {
    width: 100%;
}

.transposed-manpower-table {
    .manpower-table-container {
        display: flex;
        flex-direction: column;
        border: 1px solid #dcdcdc;
        border-radius: 4px;
        overflow: hidden;
        font-size: 0.95rem;
    }

    .manpower-table-row {
        display: flex;
        border-bottom: 1px solid #e0e0e0;
        min-height: 66px;
        align-items: center;

        &:last-child {
            border-bottom: none;
        }
    }

    .manpower-cell {
        flex: 1;
        padding: 0.75rem 1rem;
        text-align: center;
        justify-items: center;
    }

    .header-row {
        background-color: #f0f0f0;
        font-weight: bold;
    }

    .header-cell {
        text-align: center;
        background-color: #f9fafb;
        font-weight: 600;
        justify-content: center;
        align-items: center;
        min-height: 0;
        line-height: 40px;
    }

    .row-label {
        font-weight: 600;
        text-align: left;
    }

    .icon-button {
        background: none;
        border: none;
        padding: 0;
        cursor: pointer;
    }

    .icon-button img {
        width: 18px;
        height: 18px;
    }
}