.table-manager-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.row-header {
    background-color: #f8f9fa;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 1.2em;
}

.row-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    margin-bottom: 10px;
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 4px;
}

.row-content {
    flex: 1;
    padding: 0 10px;
    text-align: center;
}

.row-content:first-child {
    text-align: left;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .row-content-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .row-content {
        width: 100%;
        padding: 5px 0;
        text-align: left;
    }
} 